diff options
| author | Christian Krinitsin <mail@krinitsin.com> | 2025-11-23 12:59:32 +0100 |
|---|---|---|
| committer | Christian Krinitsin <mail@krinitsin.com> | 2025-11-23 12:59:32 +0100 |
| commit | d64c7609452cd0fd1fef20555266a8dde9380d65 (patch) | |
| tree | 7c5107c225ce60ce4dfc2b6c602f5d44375b0444 | |
| parent | 5f19fd9999dbe61d60d74c09bc8e96b40f0ec193 (diff) | |
| download | focaccia-d64c7609452cd0fd1fef20555266a8dde9380d65.tar.gz focaccia-d64c7609452cd0fd1fef20555266a8dde9380d65.zip | |
Remove singlestep option, as it got remove in QEMU >= 0.8
| -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 ) |