aboutsummaryrefslogtreecommitdiff
path: root/cross-project-tests
diff options
context:
space:
mode:
Diffstat (limited to 'cross-project-tests')
-rw-r--r--cross-project-tests/debuginfo-tests/dexter/dex/debugger/Debuggers.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/cross-project-tests/debuginfo-tests/dexter/dex/debugger/Debuggers.py b/cross-project-tests/debuginfo-tests/dexter/dex/debugger/Debuggers.py
index bee62c7..6282f38 100644
--- a/cross-project-tests/debuginfo-tests/dexter/dex/debugger/Debuggers.py
+++ b/cross-project-tests/debuginfo-tests/dexter/dex/debugger/Debuggers.py
@@ -9,6 +9,7 @@
from collections import OrderedDict
import os
import pickle
+import platform
import subprocess
import sys
from tempfile import NamedTemporaryFile
@@ -97,7 +98,7 @@ def add_debugger_tool_arguments(parser, context, defaults):
parser.add_argument(
"--show-debugger", action="store_true", default=None, help="show the debugger"
)
- defaults.arch = "x86_64"
+ defaults.arch = platform.machine()
parser.add_argument(
"--arch",
type=str,