aboutsummaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorAlex Rønne Petersen <alex@alexrp.com>2024-11-03 07:58:34 +0100
committerAlex Rønne Petersen <alex@alexrp.com>2024-11-04 08:29:42 +0100
commit9d0bb7ada81f91d16d985340ab8d9fe98ad40565 (patch)
tree4545a8df74d459370166525c801ae097c87c3f76 /test
parent2958a90515859fa129880e0f7a39d7990dad853f (diff)
downloadzig-9d0bb7ada81f91d16d985340ab8d9fe98ad40565.tar.gz
zig-9d0bb7ada81f91d16d985340ab8d9fe98ad40565.zip
test: Disable 128-bit atomics behavior tests on aarch64_be.
See: https://github.com/ziglang/zig/issues/21892
Diffstat (limited to 'test')
-rw-r--r--test/behavior/atomics.zig3
1 files changed, 2 insertions, 1 deletions
diff --git a/test/behavior/atomics.zig b/test/behavior/atomics.zig
index 7d68a41864..8f32168f40 100644
--- a/test/behavior/atomics.zig
+++ b/test/behavior/atomics.zig
@@ -5,7 +5,8 @@ const expectEqual = std.testing.expectEqual;
const supports_128_bit_atomics = switch (builtin.cpu.arch) {
// TODO: Ideally this could be sync'd with the logic in Sema.
- .aarch64, .aarch64_be => true,
+ .aarch64 => true,
+ .aarch64_be => false, // Fails due to LLVM issues.
.x86_64 => std.Target.x86.featureSetHas(builtin.cpu.features, .cx16),
else => false,
};