forked from rust-lang/rust
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Rollup merge of rust-lang#127095 - Oneirical:testiary-education, r=ji…
…eyouxu Migrate `reproducible-build-2` and `stable-symbol-names` `run-make` tests to rmake Part of rust-lang#121876 and the associated [Google Summer of Code project](https://blog.rust-lang.org/2024/05/01/gsoc-2024-selected-projects.html). Needs try-jobs. try-job: x86_64-msvc try-job: armhf-gnu try-job: test-various try-job: aarch64-apple try-job: i686-msvc try-job: x86_64-mingw
- Loading branch information
Showing
7 changed files
with
138 additions
and
76 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
// Builds with fat link-time-optimizations and the --sysroot flag used to be | ||
// non-deterministic - that means, compiling twice with no changes would create | ||
// slightly different outputs. This has been fixed by #63352 and #63505. | ||
// Test 1: Compile with fat-lto twice, check that both compilation outputs are identical. | ||
// Test 2: Compile with sysroot, then change the sysroot path from absolute to relative. | ||
// Outputs should be identical. | ||
// See https://github.com/rust-lang/rust/issues/34902 | ||
|
||
//@ ignore-windows | ||
// Reasons: | ||
// 1. The object files are reproducible, but their paths are not, which causes | ||
// the first assertion in the test to fail. | ||
// 2. When the sysroot gets copied, some symlinks must be re-created, | ||
// which is a privileged action on Windows. | ||
|
||
use run_make_support::{bin_name, rfs, rust_lib_name, rustc}; | ||
|
||
fn main() { | ||
// test 1: fat lto | ||
rustc().input("reproducible-build-aux.rs").run(); | ||
rustc().input("reproducible-build.rs").arg("-Clto=fat").output("reproducible-build").run(); | ||
rfs::rename("reproducible-build", "reproducible-build-a"); | ||
rustc().input("reproducible-build.rs").arg("-Clto=fat").output("reproducible-build").run(); | ||
assert_eq!(rfs::read("reproducible-build"), rfs::read("reproducible-build-a")); | ||
|
||
// test 2: sysroot | ||
let sysroot = rustc().print("sysroot").run().stdout_utf8(); | ||
let sysroot = sysroot.trim(); | ||
|
||
rustc().input("reproducible-build-aux.rs").run(); | ||
rustc() | ||
.input("reproducible-build.rs") | ||
.crate_type("rlib") | ||
.sysroot(&sysroot) | ||
.arg(format!("--remap-path-prefix={sysroot}=/sysroot")) | ||
.run(); | ||
rfs::copy_dir_all(&sysroot, "sysroot"); | ||
rfs::rename(rust_lib_name("reproducible_build"), rust_lib_name("foo")); | ||
rustc() | ||
.input("reproducible-build.rs") | ||
.crate_type("rlib") | ||
.sysroot("sysroot") | ||
.arg("--remap-path-prefix=/sysroot=/sysroot") | ||
.run(); | ||
|
||
assert_eq!(rfs::read(rust_lib_name("reproducible_build")), rfs::read(rust_lib_name("foo"))); | ||
} |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,68 @@ | ||
// A typo in rustc caused generic symbol names to be non-deterministic - | ||
// that is, it was possible to compile the same file twice with no changes | ||
// and get outputs with different symbol names. | ||
// This test compiles each of the two crates twice, and checks that each output | ||
// contains exactly the same symbol names. | ||
// Additionally, both crates should agree on the same symbol names for monomorphic | ||
// functions. | ||
// See https://github.com/rust-lang/rust/issues/32554 | ||
|
||
use std::collections::HashSet; | ||
|
||
use run_make_support::{llvm_readobj, regex, rfs, rust_lib_name, rustc}; | ||
|
||
static LEGACY_PATTERN: std::sync::OnceLock<regex::Regex> = std::sync::OnceLock::new(); | ||
static V0_PATTERN: std::sync::OnceLock<regex::Regex> = std::sync::OnceLock::new(); | ||
|
||
fn main() { | ||
LEGACY_PATTERN.set(regex::Regex::new(r"_ZN.*E").unwrap()).unwrap(); | ||
V0_PATTERN.set(regex::Regex::new(r"_R[a-zA-Z0-9_]*").unwrap()).unwrap(); | ||
// test 1: first file | ||
rustc().input("stable-symbol-names1.rs").run(); | ||
let sym1 = process_symbols("stable_symbol_names1", "generic_|mono_"); | ||
rfs::remove_file(rust_lib_name("stable_symbol_names1")); | ||
rustc().input("stable-symbol-names1.rs").run(); | ||
let sym2 = process_symbols("stable_symbol_names1", "generic_|mono_"); | ||
assert_eq!(sym1, sym2); | ||
|
||
// test 2: second file | ||
rustc().input("stable-symbol-names2.rs").run(); | ||
let sym1 = process_symbols("stable_symbol_names2", "generic_|mono_"); | ||
rfs::remove_file(rust_lib_name("stable_symbol_names2")); | ||
rustc().input("stable-symbol-names2.rs").run(); | ||
let sym2 = process_symbols("stable_symbol_names2", "generic_|mono_"); | ||
assert_eq!(sym1, sym2); | ||
|
||
// test 3: crossed files | ||
let sym1 = process_symbols("stable_symbol_names1", "mono_"); | ||
let sym2 = process_symbols("stable_symbol_names2", "mono_"); | ||
assert_eq!(sym1, sym2); | ||
} | ||
|
||
#[track_caller] | ||
fn process_symbols(path: &str, symbol: &str) -> Vec<String> { | ||
// Dump all symbols. | ||
let out = llvm_readobj().input(rust_lib_name(path)).symbols().run().stdout_utf8(); | ||
// Extract only lines containing `symbol`. | ||
let symbol_regex = regex::Regex::new(symbol).unwrap(); | ||
let out = out.lines().filter(|&line| symbol_regex.find(line).is_some()); | ||
|
||
// HashSet - duplicates should be excluded! | ||
let mut symbols: HashSet<String> = HashSet::new(); | ||
// From those lines, extract just the symbol name via `regex`, which: | ||
// * always starts with "_ZN" and ends with "E" (`legacy` mangling) | ||
// * always starts with "_R" (`v0` mangling) | ||
for line in out { | ||
if let Some(mat) = LEGACY_PATTERN.get().unwrap().find(line) { | ||
symbols.insert(mat.as_str().to_string()); | ||
} | ||
if let Some(mat) = V0_PATTERN.get().unwrap().find(line) { | ||
symbols.insert(mat.as_str().to_string()); | ||
} | ||
} | ||
|
||
let mut symbols: Vec<String> = symbols.into_iter().collect(); | ||
// Sort those symbol names for deterministic comparison. | ||
symbols.sort(); | ||
symbols | ||
} |