We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 80aeb7c commit 976289aCopy full SHA for 976289a
src/subcommand/tester.rs
@@ -86,7 +86,7 @@ edition = "2018"
86
[workspace] # exclude this crate from parent workspaces
87
88
[[bin]]
89
-name = "{test_name}"
+name = "bootimage-tester-{test_name}"
90
path = "{test_path}"
91
92
{dependency_table}
@@ -103,8 +103,7 @@ path = "{test_path}"
103
let mut cmd = Command::new(&cargo);
104
cmd.arg("xbuild");
105
cmd.arg("--manifest-path").arg(&manifest_path);
106
- cmd.arg("--target-dir")
107
- .arg(&integration_test_dir.join("target"));
+ cmd.arg("--target-dir").arg(&kernel_target_dir);
108
cmd.env("SYSROOT_DIR", &integration_test_dir.join("sysroot")); // for cargo-xbuild
109
110
if let Some(target) = args.target.as_ref().or(config.default_target.as_ref()) {
0 commit comments