aboutsummaryrefslogtreecommitdiff
path: root/test/behavior/basic.zig
diff options
context:
space:
mode:
authorJacob Young <jacobly0@users.noreply.github.com>2025-01-09 13:38:25 -0500
committerJacob Young <jacobly0@users.noreply.github.com>2025-01-16 20:47:30 -0500
commitc3d33440f0e68f114996dc74ec15e2b9514c4b3e (patch)
tree9b95e20199459b4d93aa660f7dd03151ba487f0a /test/behavior/basic.zig
parent666d76d85c1dc2f107d0a57b424983082672943e (diff)
downloadzig-c3d33440f0e68f114996dc74ec15e2b9514c4b3e.tar.gz
zig-c3d33440f0e68f114996dc74ec15e2b9514c4b3e.zip
x86_64: pass more behavior tests
Diffstat (limited to 'test/behavior/basic.zig')
-rw-r--r--test/behavior/basic.zig2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/behavior/basic.zig b/test/behavior/basic.zig
index e8f4f15259..94e68e62e4 100644
--- a/test/behavior/basic.zig
+++ b/test/behavior/basic.zig
@@ -1169,10 +1169,10 @@ test "arrays and vectors with big integers" {
if (builtin.zig_backend == .stage2_aarch64) return error.SkipZigTest;
if (builtin.zig_backend == .stage2_sparc64) return error.SkipZigTest;
if (builtin.zig_backend == .stage2_arm) return error.SkipZigTest;
+ if (builtin.zig_backend == .stage2_x86_64 and builtin.target.ofmt != .elf and builtin.target.ofmt != .macho) return error.SkipZigTest;
if (builtin.zig_backend == .stage2_wasm) return error.SkipZigTest;
if (builtin.zig_backend == .stage2_spirv64) return error.SkipZigTest;
if (builtin.zig_backend == .stage2_riscv64) return error.SkipZigTest;
- if (builtin.zig_backend == .stage2_x86_64 and builtin.target.ofmt != .elf and builtin.target.ofmt != .macho) return error.SkipZigTest;
inline for (.{ u65528, u65529, u65535 }) |Int| {
var a: [1]Int = undefined;