Skip to content

Commit 74e1732

Browse files
committed
Fix: Don't pass cli arguments to QEMU
1 parent f2a9dec commit 74e1732

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

tests/runner/src/lib.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,6 @@ pub fn run_test_kernel(kernel_binary_path: &str) {
2121
.arg("-drive")
2222
.arg(format!("format=raw,file={}", out_gpt_path.display()));
2323
run_cmd.args(QEMU_ARGS);
24-
run_cmd.args(std::env::args().skip(2).collect::<Vec<_>>());
2524
run_cmd.arg("-bios").arg(ovmf_prebuilt::ovmf_pure_efi());
2625

2726
let child_output = run_cmd.output().unwrap();

0 commit comments

Comments
 (0)