| ... | ... | @@ -9,7 +9,7 @@ const maxInt = std.math.maxInt; |
| 9 | 9 | top_level_field: i32, |
| 10 | 10 | |
| 11 | 11 | test "top level fields" { |
| 12 | | if (builtin.zig_backend == .stage2_x86_64 or builtin.zig_backend == .stage2_arm) return error.SkipZigTest; |
| 12 | if (builtin.zig_backend == .stage2_arm) return error.SkipZigTest; |
| 13 | 13 | |
| 14 | 14 | var instance = @This(){ |
| 15 | 15 | .top_level_field = 1234, |
| ... | ... | @@ -176,7 +176,7 @@ const MemberFnTestFoo = struct { |
| 176 | 176 | }; |
| 177 | 177 | |
| 178 | 178 | test "call member function directly" { |
| 179 | | if (builtin.zig_backend == .stage2_x86_64 or builtin.zig_backend == .stage2_arm) return error.SkipZigTest; |
| 179 | if (builtin.zig_backend == .stage2_arm) return error.SkipZigTest; |
| 180 | 180 | |
| 181 | 181 | const instance = MemberFnTestFoo{ .x = 1234 }; |
| 182 | 182 | const result = MemberFnTestFoo.member(instance); |
| ... | ... | @@ -184,7 +184,7 @@ test "call member function directly" { |
| 184 | 184 | } |
| 185 | 185 | |
| 186 | 186 | test "store member function in variable" { |
| 187 | | if (builtin.zig_backend == .stage2_x86_64 or builtin.zig_backend == .stage2_arm) return error.SkipZigTest; |
| 187 | if (builtin.zig_backend == .stage2_arm) return error.SkipZigTest; |
| 188 | 188 | |
| 189 | 189 | const instance = MemberFnTestFoo{ .x = 1234 }; |
| 190 | 190 | const memberFn = MemberFnTestFoo.member; |
| ... | ... | @@ -206,7 +206,7 @@ const MemberFnRand = struct { |
| 206 | 206 | }; |
| 207 | 207 | |
| 208 | 208 | test "return struct byval from function" { |
| 209 | | if (builtin.zig_backend == .stage2_x86_64 or builtin.zig_backend == .stage2_arm) return error.SkipZigTest; |
| 209 | if (builtin.zig_backend == .stage2_arm) return error.SkipZigTest; |
| 210 | 210 | |
| 211 | 211 | const bar = makeBar2(1234, 5678); |
| 212 | 212 | try expect(bar.y == 5678); |