aboutsummaryrefslogtreecommitdiff
path: root/test/behavior/struct.zig
diff options
context:
space:
mode:
authorJacob Young <jacobly0@users.noreply.github.com>2023-07-30 07:49:45 -0400
committerJacob Young <jacobly0@users.noreply.github.com>2023-07-31 01:58:10 -0400
commit9831f272383a66392ebeadbc60d8176f44b3553c (patch)
tree996de8b72b2616b193bd9c47e3792fdc3b98dd07 /test/behavior/struct.zig
parent817fa3af8631d894004fbdb668da0882836dbe9b (diff)
downloadzig-9831f272383a66392ebeadbc60d8176f44b3553c.tar.gz
zig-9831f272383a66392ebeadbc60d8176f44b3553c.zip
cbe: get behavior tests running on arm
Specifically without linking libc.
Diffstat (limited to 'test/behavior/struct.zig')
-rw-r--r--test/behavior/struct.zig1
1 files changed, 1 insertions, 0 deletions
diff --git a/test/behavior/struct.zig b/test/behavior/struct.zig
index 72553e4058..50f1f16bb8 100644
--- a/test/behavior/struct.zig
+++ b/test/behavior/struct.zig
@@ -824,6 +824,7 @@ test "non-packed struct with u128 entry in union" {
if (builtin.zig_backend == .stage2_arm) return error.SkipZigTest; // TODO
if (builtin.zig_backend == .stage2_sparc64) return error.SkipZigTest; // TODO
if (builtin.zig_backend == .stage2_spirv64) return error.SkipZigTest;
+ if (builtin.zig_backend == .stage2_c and builtin.cpu.arch == .arm) return error.SkipZigTest;
const U = union(enum) {
Num: u128,