We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 841d2ec commit 425931eCopy full SHA for 425931e
example-kernels/tester/tests/integration_tests.rs
@@ -1,9 +1,11 @@
1
+use std::path::Path;
2
+
3
include!(env!("GENERATED_TESTS"));
4
5
fn run_test(test_path: &str) {
6
let mut cmd = std::process::Command::new("bootimage");
7
cmd.arg("tester");
- cmd.arg(test_path);
8
+ cmd.arg(Path::new(test_path));
9
cmd.arg("--target");
10
cmd.arg("../x86_64-bootimage-example-kernels.json");
11
let output = cmd.output().expect("failed to run bootimage");
0 commit comments