diff options
| -rw-r--r-- | src/focaccia/benchmark/_benchmark.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/focaccia/benchmark/_benchmark.py b/src/focaccia/benchmark/_benchmark.py index 0562035..60570f7 100644 --- a/src/focaccia/benchmark/_benchmark.py +++ b/src/focaccia/benchmark/_benchmark.py @@ -23,7 +23,7 @@ def main(): timer = Timer("Emulator execution (continue)", paused=True, iterations=args.iterations) for i in range(timer.iterations): qemu_process = subprocess.Popen( - [f"qemu-{args.guest_arch}", "-singlestep", "-g", args.port, args.binary], + [f"qemu-{args.guest_arch}", "-g", args.port, args.binary], stdout=subprocess.DEVNULL, stderr=subprocess.DEVNULL ) |