Skip to content

Commit 67d4129

Browse files
committed
Auto merge of #128562 - Oneirical:no-contest-expected, r=<try>
Migrate `incr-add-rust-src-component` and `issue-84395-lto-embed-bitcode` `run-make` tests to rmake Part of #121876 and the associated [Google Summer of Code project](https://blog.rust-lang.org/2024/05/01/gsoc-2024-selected-projects.html). In `incr-add-rust-src-component`, I directly modify the sysroot, unlike the original test which used a symlink. This is probably a very bad idea, but I want to see what happens. try-job: x86_64-gnu-debug
2 parents 2b78d92 + 76a7e72 commit 67d4129

File tree

6 files changed

+51
-61
lines changed

6 files changed

+51
-61
lines changed

src/tools/tidy/src/allowed_run_make_makefiles.txt

-2
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,6 @@ run-make/dep-info-spaces/Makefile
77
run-make/dep-info/Makefile
88
run-make/emit-to-stdout/Makefile
99
run-make/extern-fn-reachable/Makefile
10-
run-make/incr-add-rust-src-component/Makefile
11-
run-make/issue-84395-lto-embed-bitcode/Makefile
1210
run-make/jobserver-error/Makefile
1311
run-make/libs-through-symlinks/Makefile
1412
run-make/libtest-json/Makefile

tests/run-make/incr-add-rust-src-component/Makefile

-45
This file was deleted.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
// rust-lang/rust#70924: Test that if we add rust-src component in between
2+
// two incremental compiles, the compiler does not ICE on the second.
3+
// Remove the rust-src part of the sysroot for the *first* build.
4+
// Then put in a facsimile of the rust-src
5+
// component for the second build, in order to expose the ICE from issue #70924.
6+
// See https://github.com/rust-lang/rust/pull/72952
7+
8+
//FIXME(Oneirical): try on test-various and windows
9+
//FIXME(Oneirical): check that the direct edit of the sysroot is not messing things up
10+
11+
use run_make_support::{path, rfs, rustc};
12+
13+
fn main() {
14+
let sysroot = rustc().print("sysroot").run().stdout_utf8();
15+
let sysroot = sysroot.trim();
16+
rfs::remove_dir_all(path(&sysroot).join("lib/rustlib/src/rust"));
17+
rustc().arg("--sysroot").arg(&sysroot).incremental("incr").input("main.rs").run();
18+
rfs::create_dir_all(path(&sysroot).join("lib/rustlib/src/rust/src/libstd"));
19+
rfs::create_file(path(&sysroot).join("lib/rustlib/src/rust/src/libstd/lib.rs"));
20+
rustc().arg("--sysroot").arg(&sysroot).incremental("incr").input("main.rs").run();
21+
}

tests/run-make/issue-84395-lto-embed-bitcode/Makefile

-14
This file was deleted.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
// This test checks that the embed bitcode in elf created with
2+
// lto-embed-bitcode=optimized is a valid llvm bitcode module.
3+
// Otherwise, the `test.bc` file will cause an error when
4+
// `llvm-dis` attempts to disassemble it.
5+
// See https://github.com/rust-lang/rust/issues/84395
6+
7+
//@ needs-force-clang-based-tests
8+
// NOTE(#126180): This test only runs on `x86_64-gnu-debug`, because that CI job sets
9+
// RUSTBUILD_FORCE_CLANG_BASED_TESTS and only runs tests which contain "clang" in their
10+
// name.
11+
12+
use run_make_support::llvm::llvm_bin_dir;
13+
use run_make_support::{cmd, env_var, rustc};
14+
15+
fn main() {
16+
rustc()
17+
.input("test.rs")
18+
.link_arg("-fuse-ld=lld")
19+
.arg("-Clinker-plugin-lto")
20+
.linker(&env_var("CLANG"))
21+
.link_arg("-Wl,--plugin-opt=-lto-embed-bitcode=optimized")
22+
.arg("-Zemit-thin-lto=no")
23+
.run();
24+
cmd(llvm_bin_dir().join("objcopy"))
25+
.arg("--dump-section")
26+
.arg(".llvmbc=test.bc")
27+
.arg("test")
28+
.run();
29+
cmd(llvm_bin_dir().join("llvm-dis")).arg("test.bc").run();
30+
}

0 commit comments

Comments
 (0)