Skip to content

Commit 773f4a5

Browse files
authored
Rollup merge of rust-lang#126112 - Kobzol:runmake-source-root, r=jieyouxu
Clean up source root in run-make tests The name `S` isn't exactly the most descriptive, and we also shouldn't need to pass it when building (actually I think that most of the env. vars that we pass to `cargo` here are probably not really needed). Related issue: rust-lang#126071 r? ``@jieyouxu``
2 parents b9eaf6c + eac63b7 commit 773f4a5

File tree

3 files changed

+4
-5
lines changed

3 files changed

+4
-5
lines changed

src/tools/compiletest/src/runtest.rs

+1-2
Original file line numberDiff line numberDiff line change
@@ -3515,7 +3515,6 @@ impl<'test> TestCx<'test> {
35153515
.arg(&self.testpaths.file.join("rmake.rs"))
35163516
.env("TARGET", &self.config.target)
35173517
.env("PYTHON", &self.config.python)
3518-
.env("S", &src_root)
35193518
.env("RUST_BUILD_STAGE", &self.config.stage_id)
35203519
.env("RUSTC", cwd.join(&self.config.rustc_path))
35213520
.env("TMPDIR", &rmake_out_dir)
@@ -3567,7 +3566,7 @@ impl<'test> TestCx<'test> {
35673566
.env(dylib_env_var(), &dylib_env_paths)
35683567
.env("TARGET", &self.config.target)
35693568
.env("PYTHON", &self.config.python)
3570-
.env("S", &src_root)
3569+
.env("SOURCE_ROOT", &src_root)
35713570
.env("RUST_BUILD_STAGE", &self.config.stage_id)
35723571
.env("RUSTC", cwd.join(&self.config.rustc_path))
35733572
.env("TMPDIR", &rmake_out_dir)

src/tools/run-make-support/src/lib.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ pub fn htmldocck() -> Command {
8989

9090
/// Path to the root rust-lang/rust source checkout.
9191
pub fn source_root() -> PathBuf {
92-
env_var("S").into()
92+
env_var("SOURCE_ROOT").into()
9393
}
9494

9595
/// Construct the static library name based on the platform.

tests/run-make/CURRENT_RUSTC_VERSION/rmake.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
use std::path::PathBuf;
77

8-
use run_make_support::{aux_build, rustc};
8+
use run_make_support::{aux_build, rustc, source_root};
99

1010
fn main() {
1111
aux_build().input("stable.rs").emit("metadata").run();
@@ -17,7 +17,7 @@ fn main() {
1717
rustc().input("main.rs").emit("metadata").extern_("stable", &stable_path).command_output();
1818

1919
let stderr = String::from_utf8_lossy(&output.stderr);
20-
let version = include_str!(concat!(env!("S"), "/src/version"));
20+
let version = std::fs::read_to_string(source_root().join("src/version")).unwrap();
2121
let expected_string = format!("stable since {}", version.trim());
2222
assert!(stderr.contains(&expected_string));
2323
}

0 commit comments

Comments
 (0)