We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8db0939 commit a13925dCopy full SHA for a13925d
tests/ramdisk.rs
@@ -1,21 +1,20 @@
1
use std::path::Path;
2
3
use bootloader_test_runner::run_test_kernel_with_ramdisk;
4
-
5
static RAMDISK_PATH: &str = "tests/ramdisk.txt";
6
7
#[test]
8
fn basic_boot() {
9
run_test_kernel_with_ramdisk(
10
env!("CARGO_BIN_FILE_TEST_KERNEL_RAMDISK_basic_boot"),
11
- Some(Path::new(RAMDISK_PATH).to_path_buf()),
+ Some(Path::new(RAMDISK_PATH)),
12
);
13
}
14
15
16
fn check_ramdisk() {
17
18
env!("CARGO_BIN_FILE_TEST_KERNEL_RAMDISK_ramdisk"),
19
20
21
0 commit comments