aboutsummaryrefslogtreecommitdiff
path: root/test/behavior/struct.zig
diff options
context:
space:
mode:
Diffstat (limited to 'test/behavior/struct.zig')
-rw-r--r--test/behavior/struct.zig6
1 files changed, 6 insertions, 0 deletions
diff --git a/test/behavior/struct.zig b/test/behavior/struct.zig
index ed75268f7d..24365d49b7 100644
--- a/test/behavior/struct.zig
+++ b/test/behavior/struct.zig
@@ -500,6 +500,10 @@ const Bitfields = packed struct {
};
test "packed struct fields are ordered from LSB to MSB" {
+ if (builtin.zig_backend == .stage1) {
+ // stage1 gets the wrong answer for a lot of targets
+ return error.SkipZigTest;
+ }
if (builtin.zig_backend == .stage2_aarch64) return error.SkipZigTest; // TODO
if (builtin.zig_backend == .stage2_wasm) return error.SkipZigTest; // TODO
if (builtin.zig_backend == .stage2_c) return error.SkipZigTest; // TODO
@@ -971,6 +975,8 @@ test "comptime struct field" {
comptime b: i32 = 1234,
};
+ comptime std.debug.assert(@sizeOf(T) == 4);
+
var foo: T = undefined;
comptime try expect(foo.b == 1234);
}