Skip to content

Commit 4e63822

Browse files
committed
Auto merge of #126607 - Oneirical:the-testern-world, r=jieyouxu
Rewrite `separate-link`, `separate-link-fail` and `allocator-shim-circular-deps` `run-make` tests to `ui` or `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).
2 parents 8fcd4dd + 78998f3 commit 4e63822

File tree

8 files changed

+46
-29
lines changed

8 files changed

+46
-29
lines changed

src/tools/tidy/src/allowed_run_make_makefiles.txt

-3
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
run-make/allocator-shim-circular-deps/Makefile
21
run-make/archive-duplicate-names/Makefile
32
run-make/atomic-lock-free/Makefile
43
run-make/branch-protection-check-IBT/Makefile
@@ -185,8 +184,6 @@ run-make/rustdoc-io-error/Makefile
185184
run-make/sanitizer-cdylib-link/Makefile
186185
run-make/sanitizer-dylib-link/Makefile
187186
run-make/sanitizer-staticlib-link/Makefile
188-
run-make/separate-link-fail/Makefile
189-
run-make/separate-link/Makefile
190187
run-make/sepcomp-cci-copies/Makefile
191188
run-make/sepcomp-inlining/Makefile
192189
run-make/sepcomp-separate/Makefile

tests/run-make/allocator-shim-circular-deps/Makefile

-12
This file was deleted.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
// This test is designed to intentionally introduce a circular dependency scenario to check
2+
// that a specific compiler bug doesn't make a resurgence.
3+
// The bug in question arose when at least one crate
4+
// required a global allocator, and that crate was placed after
5+
// the one defining it in the linker order.
6+
// The generated symbols.o should not result in any linker errors.
7+
// See https://github.com/rust-lang/rust/issues/112715
8+
9+
//@ ignore-cross-compile
10+
11+
use run_make_support::{rust_lib_name, rustc};
12+
13+
fn main() {
14+
rustc().input("my_lib.rs").run();
15+
rustc().input("main.rs").arg("--test").extern_("my_lib", rust_lib_name("my_lib")).run();
16+
}

tests/run-make/separate-link-fail/Makefile

-7
This file was deleted.
+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
fn main() {}
+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
// rustc usually wants Rust code as its input. The flag `link-only` is one
2+
// exception, where a .rlink file is instead requested. The compiler should
3+
// fail when the user is wrongly passing the original Rust code
4+
// instead of the generated .rlink file when this flag is on.
5+
// https://github.com/rust-lang/rust/issues/95297
6+
7+
use run_make_support::rustc;
8+
9+
fn main() {
10+
rustc()
11+
.arg("-Zlink-only")
12+
.input("foo.rs")
13+
.run_fail()
14+
.assert_stderr_contains("The input does not look like a .rlink file");
15+
}

tests/run-make/separate-link/Makefile

-7
This file was deleted.

tests/run-make/separate-link/rmake.rs

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
// The compiler flags no-link (and by extension, link-only) used to be broken
2+
// due to changes in encoding/decoding. This was patched, and this test checks
3+
// that these flags are not broken again, resulting in successful compilation.
4+
// See https://github.com/rust-lang/rust/issues/77857
5+
6+
//@ ignore-cross-compile
7+
8+
use run_make_support::{run, rustc};
9+
10+
fn main() {
11+
rustc().stdin(b"fn main(){}").arg("-Zno-link").arg("-").run();
12+
rustc().arg("-Zlink-only").input("rust_out.rlink").run();
13+
run("rust_out");
14+
}

0 commit comments

Comments
 (0)