about summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorChristian Krinitsin <mail@krinitsin.com>2025-11-23 12:59:32 +0100
committerReimersS <sebastian.reimers@tum.de>2025-11-29 20:19:15 +0000
commit3aa4cb6340dca705bf3ddeaf8ac0d02cff38df4c (patch)
tree1bd0e82c1b1deb1769ff46c301511be8eb8d5939
parent4bb24e3de75e73cab022b49be544592b4b298bdc (diff)
downloadfocaccia-3aa4cb6340dca705bf3ddeaf8ac0d02cff38df4c.tar.gz
focaccia-3aa4cb6340dca705bf3ddeaf8ac0d02cff38df4c.zip
Remove singlestep option, as it got remove in QEMU >= 0.8
-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
             )