diff options
| author | Andrew Kelley <andrew@ziglang.org> | 2022-04-22 07:52:21 -0700 |
|---|---|---|
| committer | Andrew Kelley <andrew@ziglang.org> | 2022-04-22 07:52:21 -0700 |
| commit | 0e830b16306945ffc74ef95198eb74743ab9f184 (patch) | |
| tree | e19d5d14323ae797495027f33fbb63120fce660b /test/behavior/array.zig | |
| parent | c992b259085070b4faef10f498840d2d3ce394fa (diff) | |
| download | zig-0e830b16306945ffc74ef95198eb74743ab9f184.tar.gz zig-0e830b16306945ffc74ef95198eb74743ab9f184.zip | |
clean up behavior tests
Split big test into the two separate things it is testing.
Add missing checks to the test which revealed the test is not actually
passing yet for the C backend.
Diffstat (limited to 'test/behavior/array.zig')
| -rw-r--r-- | test/behavior/array.zig | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/test/behavior/array.zig b/test/behavior/array.zig index bf5e74e819..728e05271a 100644 --- a/test/behavior/array.zig +++ b/test/behavior/array.zig @@ -163,9 +163,9 @@ test "nested arrays of strings" { } test "nested arrays of integers" { - if (builtin.zig_backend == .stage2_aarch64) return error.SkipZigTest; - if (builtin.zig_backend == .stage2_arm) return error.SkipZigTest; - if (builtin.zig_backend == .stage2_c) return error.SkipZigTest; + if (builtin.zig_backend == .stage2_aarch64) return error.SkipZigTest; // TODO + if (builtin.zig_backend == .stage2_arm) return error.SkipZigTest; // TODO + if (builtin.zig_backend == .stage2_c) return error.SkipZigTest; // TODO const array_of_numbers = [_][2]u8{ [2]u8{ 1, 2 }, |
