diff options
| author | Martin Nordholts <martin.nordholts@codetale.se> | 2024-02-08 12:19:54 +0100 |
|---|---|---|
| committer | Martin Nordholts <martin.nordholts@codetale.se> | 2024-02-10 16:17:00 +0100 |
| commit | a4fbd01af28449de087efae8ecfa05e2264b3601 (patch) | |
| tree | ea97abb9505be5fb190a49e4c0f6d338dea6a1d6 | |
| parent | e2979a8b8cf9ae6f2f2ed0d8e66a7652f1918d35 (diff) | |
| download | rust-a4fbd01af28449de087efae8ecfa05e2264b3601.tar.gz rust-a4fbd01af28449de087efae8ecfa05e2264b3601.zip | |
tests/ui/lint/large_assignments: only-x86_64 -> only-64bit
So that devs on aarch64 can also bless tests.
| -rw-r--r-- | tests/ui/lint/large_assignments/copy_into_box_rc_arc.rs | 2 | ||||
| -rw-r--r-- | tests/ui/lint/large_assignments/large_future.rs | 2 | ||||
| -rw-r--r-- | tests/ui/lint/large_assignments/move_into_box_rc_arc.rs | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/tests/ui/lint/large_assignments/copy_into_box_rc_arc.rs b/tests/ui/lint/large_assignments/copy_into_box_rc_arc.rs index 87f7a435da6..866a4d10ff5 100644 --- a/tests/ui/lint/large_assignments/copy_into_box_rc_arc.rs +++ b/tests/ui/lint/large_assignments/copy_into_box_rc_arc.rs @@ -2,7 +2,7 @@ #![feature(large_assignments)] #![move_size_limit = "1000"] // build-fail -// only-x86_64 +// only-64bit // edition:2018 // compile-flags: -Zmir-opt-level=1 diff --git a/tests/ui/lint/large_assignments/large_future.rs b/tests/ui/lint/large_assignments/large_future.rs index 834746fa97e..a69ff356c6b 100644 --- a/tests/ui/lint/large_assignments/large_future.rs +++ b/tests/ui/lint/large_assignments/large_future.rs @@ -2,7 +2,7 @@ #![cfg_attr(attribute, feature(large_assignments))] #![cfg_attr(attribute, move_size_limit = "1000")] // build-fail -// only-x86_64 +// only-64bit // revisions: attribute option // [option]compile-flags: -Zmove-size-limit=1000 diff --git a/tests/ui/lint/large_assignments/move_into_box_rc_arc.rs b/tests/ui/lint/large_assignments/move_into_box_rc_arc.rs index 46510803498..b7a70dfdda0 100644 --- a/tests/ui/lint/large_assignments/move_into_box_rc_arc.rs +++ b/tests/ui/lint/large_assignments/move_into_box_rc_arc.rs @@ -2,7 +2,7 @@ #![feature(large_assignments)] #![move_size_limit = "1000"] // build-fail -// only-x86_64 +// only-64bit // edition:2018 // compile-flags: -Zmir-opt-level=0 |
