We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c89c280 commit 77aa954Copy full SHA for 77aa954
tests/base.py
@@ -86,7 +86,7 @@ def __setup(self):
86
self._initfile.write(self._commands)
87
self._initfile.flush()
88
self._command = [
89
- "gdb",
+ GDB_BINARY_PATH,
90
"-q",
91
"-nx",
92
"-ex",
tests/utils.py
@@ -168,7 +168,7 @@ def start_qemuuser(
168
if args:
169
cmd.extend(args)
170
cmd.append(exe)
171
- logging.info(f"Starting '{cmd}' in {qemu_exe} on :{port}")
+ logging.info(f"Starting '{cmd}'")
172
return subprocess.Popen(
173
cmd,
174
stdout=subprocess.DEVNULL,
0 commit comments