aboutsummaryrefslogtreecommitdiff
path: root/test/behavior/struct.zig
diff options
context:
space:
mode:
authorAndrew Kelley <andrew@ziglang.org>2022-03-27 14:40:24 -0700
committerAndrew Kelley <andrew@ziglang.org>2022-03-27 14:40:24 -0700
commitc8f844027185b808e2176a73fd41c955bc6e153e (patch)
tree983233f635bf85e3451fc46d3a9db4558572f2a2 /test/behavior/struct.zig
parent6d2ec7a4e39e3464bb5f14747937df9544e89ee7 (diff)
downloadzig-c8f844027185b808e2176a73fd41c955bc6e153e.tar.gz
zig-c8f844027185b808e2176a73fd41c955bc6e153e.zip
stage1: disable failing test
The new behavior test introduced in the previous commit is not passing for stage1 on mips.
Diffstat (limited to 'test/behavior/struct.zig')
-rw-r--r--test/behavior/struct.zig4
1 files changed, 4 insertions, 0 deletions
diff --git a/test/behavior/struct.zig b/test/behavior/struct.zig
index a46605c424..aea67005f4 100644
--- a/test/behavior/struct.zig
+++ b/test/behavior/struct.zig
@@ -1296,6 +1296,10 @@ test "loading a struct pointer perfoms a copy" {
}
test "packed struct aggregate init" {
+ if (builtin.zig_backend == .stage1) {
+ // stage1 fails this test on mips
+ return error.SkipZigTest;
+ }
if (builtin.zig_backend == .stage2_wasm) return error.SkipZigTest; // TODO
if (builtin.zig_backend == .stage2_x86_64) return error.SkipZigTest; // TODO
if (builtin.zig_backend == .stage2_c) return error.SkipZigTest; // TODO