aboutsummaryrefslogtreecommitdiff
path: root/test/behavior/basic.zig
diff options
context:
space:
mode:
authorMeghan Denny <hello@nektro.net>2024-09-24 13:35:12 -0700
committerGitHub <noreply@github.com>2024-09-24 13:35:12 -0700
commit5e4da1ff30d673d96809497e9bce555edef813a7 (patch)
tree69d973147adbe7bb8662cad2f3c3e3f98504c822 /test/behavior/basic.zig
parent8d76c02f9a7ca664ee669e1f9c1a70b841eb2774 (diff)
downloadzig-5e4da1ff30d673d96809497e9bce555edef813a7.tar.gz
zig-5e4da1ff30d673d96809497e9bce555edef813a7.zip
std: add arch bits for s390x-linux (#21342)
see #21402
Diffstat (limited to 'test/behavior/basic.zig')
-rw-r--r--test/behavior/basic.zig1
1 files changed, 1 insertions, 0 deletions
diff --git a/test/behavior/basic.zig b/test/behavior/basic.zig
index 9acfd56d27..d6239889d8 100644
--- a/test/behavior/basic.zig
+++ b/test/behavior/basic.zig
@@ -1425,6 +1425,7 @@ test "allocation and looping over 3-byte integer" {
if (builtin.zig_backend == .stage2_llvm and builtin.os.tag == .macos) {
return error.SkipZigTest; // TODO
}
+ if (builtin.cpu.arch == .s390x and builtin.zig_backend == .stage2_llvm) return error.SkipZigTest; // TODO
try expect(@sizeOf(u24) == 4);
try expect(@sizeOf([1]u24) == 4);