Do not pass source root when building run-make tests
This commit is contained in:
parent
b74702fbb2
commit
7eff2d9b22
@ -3515,7 +3515,6 @@ fn run_rmake_v2_test(&self) {
|
||||
.arg(&self.testpaths.file.join("rmake.rs"))
|
||||
.env("TARGET", &self.config.target)
|
||||
.env("PYTHON", &self.config.python)
|
||||
.env("S", &src_root)
|
||||
.env("RUST_BUILD_STAGE", &self.config.stage_id)
|
||||
.env("RUSTC", cwd.join(&self.config.rustc_path))
|
||||
.env("TMPDIR", &rmake_out_dir)
|
||||
|
@ -5,7 +5,7 @@
|
||||
|
||||
use std::path::PathBuf;
|
||||
|
||||
use run_make_support::{aux_build, rustc};
|
||||
use run_make_support::{aux_build, rustc, source_root};
|
||||
|
||||
fn main() {
|
||||
aux_build().input("stable.rs").emit("metadata").run();
|
||||
@ -17,7 +17,7 @@ fn main() {
|
||||
rustc().input("main.rs").emit("metadata").extern_("stable", &stable_path).command_output();
|
||||
|
||||
let stderr = String::from_utf8_lossy(&output.stderr);
|
||||
let version = include_str!(concat!(env!("S"), "/src/version"));
|
||||
let version = std::fs::read_to_string(source_root().join("src/version")).unwrap();
|
||||
let expected_string = format!("stable since {}", version.trim());
|
||||
assert!(stderr.contains(&expected_string));
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user