Skip to content

Commit 77aa954

Browse files
committed
restored gdb-multiarch as default for tests
1 parent c89c280 commit 77aa954

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

tests/base.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ def __setup(self):
8686
self._initfile.write(self._commands)
8787
self._initfile.flush()
8888
self._command = [
89-
"gdb",
89+
GDB_BINARY_PATH,
9090
"-q",
9191
"-nx",
9292
"-ex",

tests/utils.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -168,7 +168,7 @@ def start_qemuuser(
168168
if args:
169169
cmd.extend(args)
170170
cmd.append(exe)
171-
logging.info(f"Starting '{cmd}' in {qemu_exe} on :{port}")
171+
logging.info(f"Starting '{cmd}'")
172172
return subprocess.Popen(
173173
cmd,
174174
stdout=subprocess.DEVNULL,

0 commit comments

Comments
 (0)