Skip to content

Commit 4bd544c

Browse files
authored
Unrolled build for rust-lang#127325
Rollup merge of rust-lang#127325 - Oneirical:gothic-testhetic, r=jieyouxu Migrate `target-cpu-native`, `target-specs` and `target-without-atomic-cas` `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). Please test on i686-msvc. try-job: i686-msvc
2 parents 32e6926 + 0d85ef2 commit 4bd544c

File tree

7 files changed

+101
-40
lines changed

7 files changed

+101
-40
lines changed

src/tools/tidy/src/allowed_run_make_makefiles.txt

-3
Original file line numberDiff line numberDiff line change
@@ -147,9 +147,6 @@ run-make/symbol-mangling-hashed/Makefile
147147
run-make/symbol-visibility/Makefile
148148
run-make/symbols-include-type-name/Makefile
149149
run-make/sysroot-crates-are-unstable/Makefile
150-
run-make/target-cpu-native/Makefile
151-
run-make/target-specs/Makefile
152-
run-make/target-without-atomic-cas/Makefile
153150
run-make/test-benches/Makefile
154151
run-make/thumb-none-cortex-m/Makefile
155152
run-make/thumb-none-qemu/Makefile

tests/run-make/target-cpu-native/Makefile

-20
This file was deleted.
+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
// target-cpu is a codegen flag that generates code for the processor of the host machine
2+
// running the compilation. This test is a sanity test that this flag does not cause any
3+
// warnings when used, and that binaries produced by it can also be successfully executed.
4+
// See https://github.com/rust-lang/rust/pull/23238
5+
6+
use run_make_support::{run, rustc};
7+
8+
fn main() {
9+
let out = rustc().input("foo.rs").arg("-Ctarget-cpu=native").run().stderr_utf8();
10+
run("foo");
11+
// There should be zero warnings emitted - the bug would cause "unknown CPU `native`"
12+
// to be printed out.
13+
assert!(out.is_empty());
14+
}

tests/run-make/target-specs/Makefile

-12
This file was deleted.

tests/run-make/target-specs/rmake.rs

+71
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,71 @@
1+
// Target-specific compilation in rustc used to have case-by-case peculiarities in 2014,
2+
// with the compiler having redundant target types and unspecific names. An overarching rework
3+
// in #16156 changed the way the target flag functions, and this test attempts compilation
4+
// with the target flag's bundle of new features to check that compilation either succeeds while
5+
// using them correctly, or fails with the right error message when using them improperly.
6+
// See https://github.com/rust-lang/rust/pull/16156
7+
8+
use run_make_support::{diff, fs_wrapper, rustc};
9+
10+
fn main() {
11+
rustc().input("foo.rs").target("my-awesome-platform.json").crate_type("lib").emit("asm").run();
12+
assert!(!fs_wrapper::read_to_string("foo.s").contains("morestack"));
13+
rustc()
14+
.input("foo.rs")
15+
.target("my-invalid-platform.json")
16+
.run_fail()
17+
.assert_stderr_contains("Error loading target specification");
18+
rustc()
19+
.input("foo.rs")
20+
.target("my-incomplete-platform.json")
21+
.run_fail()
22+
.assert_stderr_contains("Field llvm-target");
23+
rustc()
24+
.env("RUST_TARGET_PATH", ".")
25+
.input("foo.rs")
26+
.target("my-awesome-platform")
27+
.crate_type("lib")
28+
.emit("asm")
29+
.run();
30+
rustc()
31+
.env("RUST_TARGET_PATH", ".")
32+
.input("foo.rs")
33+
.target("my-x86_64-unknown-linux-gnu-platform")
34+
.crate_type("lib")
35+
.emit("asm")
36+
.run();
37+
let test_platform = rustc()
38+
.arg("-Zunstable-options")
39+
.target("my-awesome-platform.json")
40+
.print("target-spec-json")
41+
.run()
42+
.stdout_utf8();
43+
fs_wrapper::create_file("test-platform.json");
44+
fs_wrapper::write("test-platform.json", test_platform.as_bytes());
45+
let test_platform_2 = rustc()
46+
.arg("-Zunstable-options")
47+
.target("test-platform.json")
48+
.print("target-spec-json")
49+
.run()
50+
.stdout_utf8();
51+
diff()
52+
.expected_file("test-platform.json")
53+
.actual_text("test-platform-2", test_platform_2)
54+
.run();
55+
rustc()
56+
.input("foo.rs")
57+
.target("definitely-not-builtin-target")
58+
.run_fail()
59+
.assert_stderr_contains("may not set is_builtin");
60+
rustc()
61+
.input("foo.rs")
62+
.target("endianness-mismatch")
63+
.run_fail()
64+
.assert_stderr_contains(r#""data-layout" claims architecture is little-endian"#);
65+
rustc()
66+
.input("foo.rs")
67+
.target("mismatching-data-layout")
68+
.crate_type("lib")
69+
.run_fail()
70+
.assert_stderr_contains("data-layout for target");
71+
}

tests/run-make/target-without-atomic-cas/Makefile

-5
This file was deleted.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
// ARM Cortex-M are a class of processors supported by the rust compiler. However,
2+
// they cannot support any atomic features, such as Arc. This test simply prints
3+
// the configuration details of one Cortex target, and checks that the compiler
4+
// does not falsely list atomic support.
5+
// See https://github.com/rust-lang/rust/pull/36874
6+
7+
use run_make_support::rustc;
8+
9+
// The target used below doesn't support atomic CAS operations. Verify that's the case
10+
fn main() {
11+
rustc()
12+
.print("cfg")
13+
.target("thumbv6m-none-eabi")
14+
.run()
15+
.assert_stdout_not_contains(r#"target_has_atomic="ptr""#);
16+
}

0 commit comments

Comments
 (0)