| author | |
| committer | |
| log | 4ef26fc35562222263f564ca8d382ecd4b44c0a3 |
| tree | 0c24528948ba6d99dab2d024ce23fa6fcc3b5350 |
| parent | 608025456b164aae69c7e794b1419e6b03a5cb79 |
3 files changed, 0 insertions(+), 5 deletions(-)
test/behavior/array.zig-1| ... | @@ -501,7 +501,6 @@ test "type coercion of anon struct literal to array" { | ... | @@ -501,7 +501,6 @@ test "type coercion of anon struct literal to array" { |
| 501 | if (builtin.zig_backend == .stage2_aarch64) return error.SkipZigTest; // TODO | 501 | if (builtin.zig_backend == .stage2_aarch64) return error.SkipZigTest; // TODO |
| 502 | if (builtin.zig_backend == .stage2_c) return error.SkipZigTest; // TODO | 502 | if (builtin.zig_backend == .stage2_c) return error.SkipZigTest; // TODO |
| 503 | if (builtin.zig_backend == .stage2_arm) return error.SkipZigTest; // TODO | 503 | if (builtin.zig_backend == .stage2_arm) return error.SkipZigTest; // TODO |
| 504 | if (builtin.zig_backend == .stage2_x86_64) return error.SkipZigTest; // TODO | ||
| 505 | 504 | ||
| 506 | const S = struct { | 505 | const S = struct { |
| 507 | const U = union { | 506 | const U = union { |
test/behavior/struct.zig-2| ... | @@ -301,7 +301,6 @@ test "void struct fields" { | ... | @@ -301,7 +301,6 @@ test "void struct fields" { |
| 301 | if (builtin.zig_backend == .stage2_aarch64) return error.SkipZigTest; | 301 | if (builtin.zig_backend == .stage2_aarch64) return error.SkipZigTest; |
| 302 | if (builtin.zig_backend == .stage2_c) return error.SkipZigTest; // TODO | 302 | if (builtin.zig_backend == .stage2_c) return error.SkipZigTest; // TODO |
| 303 | if (builtin.zig_backend == .stage2_arm) return error.SkipZigTest; // TODO | 303 | if (builtin.zig_backend == .stage2_arm) return error.SkipZigTest; // TODO |
| 304 | if (builtin.zig_backend == .stage2_x86_64) return error.SkipZigTest; // TODO | ||
| 305 | 304 | ||
| 306 | const foo = VoidStructFieldsFoo{ | 305 | const foo = VoidStructFieldsFoo{ |
| 307 | .a = void{}, | 306 | .a = void{}, |
| ... | @@ -1019,7 +1018,6 @@ test "struct with union field" { | ... | @@ -1019,7 +1018,6 @@ test "struct with union field" { |
| 1019 | } | 1018 | } |
| 1020 | 1019 | ||
| 1021 | test "type coercion of anon struct literal to struct" { | 1020 | test "type coercion of anon struct literal to struct" { |
| 1022 | if (builtin.zig_backend == .stage2_x86_64) return error.SkipZigTest; // TODO | ||
| 1023 | if (builtin.zig_backend == .stage2_c) return error.SkipZigTest; // TODO | 1021 | if (builtin.zig_backend == .stage2_c) return error.SkipZigTest; // TODO |
| 1024 | if (builtin.zig_backend == .stage2_arm) return error.SkipZigTest; // TODO | 1022 | if (builtin.zig_backend == .stage2_arm) return error.SkipZigTest; // TODO |
| 1025 | if (builtin.zig_backend == .stage2_aarch64) return error.SkipZigTest; // TODO | 1023 | if (builtin.zig_backend == .stage2_aarch64) return error.SkipZigTest; // TODO |
test/behavior/tuple.zig-2| ... | @@ -4,7 +4,6 @@ const testing = std.testing; | ... | @@ -4,7 +4,6 @@ const testing = std.testing; |
| 4 | const expect = testing.expect; | 4 | const expect = testing.expect; |
| 5 | 5 | ||
| 6 | test "tuple concatenation" { | 6 | test "tuple concatenation" { |
| 7 | if (builtin.zig_backend == .stage2_x86_64) return error.SkipZigTest; // TODO | ||
| 8 | if (builtin.zig_backend == .stage2_arm) return error.SkipZigTest; // TODO | 7 | if (builtin.zig_backend == .stage2_arm) return error.SkipZigTest; // TODO |
| 9 | if (builtin.zig_backend == .stage2_aarch64) return error.SkipZigTest; // TODO | 8 | if (builtin.zig_backend == .stage2_aarch64) return error.SkipZigTest; // TODO |
| 10 | 9 | ||
| ... | @@ -47,7 +46,6 @@ test "tuple multiplication" { | ... | @@ -47,7 +46,6 @@ test "tuple multiplication" { |
| 47 | } | 46 | } |
| 48 | 47 | ||
| 49 | test "more tuple concatenation" { | 48 | test "more tuple concatenation" { |
| 50 | if (builtin.zig_backend == .stage2_x86_64) return error.SkipZigTest; // TODO | ||
| 51 | if (builtin.zig_backend == .stage2_aarch64) return error.SkipZigTest; // TODO | 49 | if (builtin.zig_backend == .stage2_aarch64) return error.SkipZigTest; // TODO |
| 52 | if (builtin.zig_backend == .stage2_arm) return error.SkipZigTest; // TODO | 50 | if (builtin.zig_backend == .stage2_arm) return error.SkipZigTest; // TODO |
| 53 | 51 |