diff options
| author | Matthias Krüger <matthias.krueger@famsik.de> | 2021-10-16 08:02:22 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-10-16 08:02:22 +0200 |
| commit | e56b5ee716e0ba2fcc2a4842a11eb7f47cde5982 (patch) | |
| tree | 65714e0e0bd64e1993112d2c3b31c7d3609f973c | |
| parent | dfed1a6c0775ef251b9ffe74ebe696e0d70c5993 (diff) | |
| parent | 2a1fbb86ebb04d0a360f4522433b1af9feaddfd0 (diff) | |
| download | rust-e56b5ee716e0ba2fcc2a4842a11eb7f47cde5982.tar.gz rust-e56b5ee716e0ba2fcc2a4842a11eb7f47cde5982.zip | |
Rollup merge of #89902 - rusticstuff:outline-atomics-linux-only, r=workingjubilee
Restrict the aarch64 outline atomics test to Linux The test was introduced in #83655, which enables the `outline-atomics` feature for aarch64-unknown-linux-* but not for any other aarch64 targets. The test did not check for Linux causing test failures on aarch64-apple-darwin. r? `@workingjubilee`
| -rw-r--r-- | src/test/assembly/asm/aarch64-outline-atomics.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/test/assembly/asm/aarch64-outline-atomics.rs b/src/test/assembly/asm/aarch64-outline-atomics.rs index 93dda712e1b..42cef9bb679 100644 --- a/src/test/assembly/asm/aarch64-outline-atomics.rs +++ b/src/test/assembly/asm/aarch64-outline-atomics.rs @@ -4,6 +4,7 @@ // compile-flags: --target aarch64-unknown-linux-gnu // needs-llvm-components: aarch64 // only-aarch64 +// only-linux #![crate_type = "rlib"] |
