-
Notifications
You must be signed in to change notification settings - Fork 12.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Auto merge of #128407 - Oneirical:feline-dotestication, r=jieyouxu
Migrate `min-global-align` and `no-alloc-shim` `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). Please try: try-job: aarch64-apple try-job: test-various try-job: armhf-gnu try-job: aarch64-gnu try-job: aarch64-gnu
- Loading branch information
Showing
7 changed files
with
97 additions
and
49 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,27 @@ | ||
// This test checks that global variables respect the target minimum alignment. | ||
// The three bools `STATIC_BOOL`, `STATIC_MUT_BOOL`, and `CONST_BOOL` all have | ||
// type-alignment of 1, but some targets require greater global alignment. | ||
// See https://github.com/rust-lang/rust/pull/44440 | ||
|
||
//@ only-linux | ||
// Reason: this test is specific to linux, considering compilation is targeted | ||
// towards linux architectures only. | ||
|
||
use run_make_support::{assert_count_is, llvm_components_contain, rfs, rustc}; | ||
|
||
fn main() { | ||
// Most targets are happy with default alignment -- take i686 for example. | ||
if llvm_components_contain("x86") { | ||
rustc().target("i686-unknown-linux-gnu").emit("llvm-ir").input("min_global_align.rs").run(); | ||
assert_count_is(3, rfs::read_to_string("min_global_align.ll"), "align 1"); | ||
} | ||
// SystemZ requires even alignment for PC-relative addressing. | ||
if llvm_components_contain("systemz") { | ||
rustc() | ||
.target("s390x-unknown-linux-gnu") | ||
.emit("llvm-ir") | ||
.input("min_global_align.rs") | ||
.run(); | ||
assert_count_is(3, rfs::read_to_string("min_global_align.ll"), "align 2"); | ||
} | ||
} |
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,55 @@ | ||
// This test checks the compatibility of the interaction between `--emit obj` and | ||
// `#[global_allocator]`, as it is now possible to invoke the latter without the | ||
// allocator shim since #86844. As this feature is unstable, it should fail if | ||
// --cfg check_feature_gate is passed. | ||
// See https://github.com/rust-lang/rust/pull/86844 | ||
|
||
//@ ignore-cross-compile | ||
// Reason: the compiled binary is executed | ||
|
||
//@ ignore-msvc | ||
//FIXME(Oneirical): Getting this to work on MSVC requires passing libcmt.lib to CC, | ||
// which is not trivial to do. | ||
// Tracking issue: https://github.com/rust-lang/rust/issues/128602 | ||
// Discussion: https://github.com/rust-lang/rust/pull/128407#discussion_r1702439172 | ||
|
||
use run_make_support::{cc, cwd, has_extension, has_prefix, run, rustc, shallow_find_files}; | ||
|
||
fn main() { | ||
rustc().input("foo.rs").crate_type("bin").emit("obj").panic("abort").run(); | ||
let libdir = rustc().print("target-libdir").run().stdout_utf8(); | ||
let libdir = libdir.trim(); | ||
|
||
let alloc_libs = shallow_find_files(&libdir, |path| { | ||
has_prefix(path, "liballoc-") && has_extension(path, "rlib") | ||
}); | ||
let core_libs = shallow_find_files(&libdir, |path| { | ||
has_prefix(path, "libcore-") && has_extension(path, "rlib") | ||
}); | ||
let compiler_builtins_libs = shallow_find_files(libdir, |path| { | ||
has_prefix(path, "libcompiler_builtins") && has_extension(path, "rlib") | ||
}); | ||
|
||
cc().input("foo.o") | ||
.out_exe("foo") | ||
.args(&alloc_libs) | ||
.args(&core_libs) | ||
.args(&compiler_builtins_libs) | ||
.run(); | ||
run("foo"); | ||
|
||
// Check that linking without __rust_no_alloc_shim_is_unstable defined fails | ||
rustc() | ||
.input("foo.rs") | ||
.crate_type("bin") | ||
.emit("obj") | ||
.panic("abort") | ||
.cfg("check_feature_gate") | ||
.run(); | ||
cc().input("foo.o") | ||
.out_exe("foo") | ||
.args(&alloc_libs) | ||
.args(&core_libs) | ||
.args(&compiler_builtins_libs) | ||
.run_fail(); | ||
} |