Skip to content

Commit 3652e30

Browse files
committed
fix the tests
1 parent 4728751 commit 3652e30

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

tests/runner/src/lib.rs

+6-6
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,12 @@ const QEMU_ARGS: &[&str] = &[
55
"isa-debug-exit,iobase=0xf4,iosize=0x04",
66
"-serial",
77
"stdio",
8-
// "-display",
9-
// "none",
8+
"-display",
9+
"none",
1010
"--no-reboot",
1111
// "-d",
1212
// "int",
13-
"-s",
13+
// "-s",
1414
// "-S",
1515
];
1616

@@ -34,9 +34,9 @@ pub fn run_test_kernel(kernel_binary_path: &str) {
3434
let out_tftp_path = kernel_path.with_extension(".tftp");
3535
bootloader::create_uefi_pxe_tftp_folder(kernel_path, &out_tftp_path).unwrap();
3636

37-
// run_test_kernel_on_uefi(&out_gpt_path);
38-
run_test_kernel_on_bios(&out_mbr_path);
39-
// run_test_kernel_on_uefi_pxe(&out_tftp_path);
37+
run_test_kernel_on_uefi(&out_gpt_path);
38+
// run_test_kernel_on_bios(&out_mbr_path);
39+
run_test_kernel_on_uefi_pxe(&out_tftp_path);
4040
}
4141

4242
pub fn run_test_kernel_on_uefi(out_gpt_path: &Path) {

0 commit comments

Comments
 (0)