about summary refs log tree commit diff stats
diff options
context:
space:
mode:
-rw-r--r--src/focaccia/benchmark/_benchmark.py2
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
             )