aboutsummaryrefslogtreecommitdiff
path: root/test/behavior/array.zig
diff options
context:
space:
mode:
authorAndrew Kelley <andrew@ziglang.org>2022-04-22 07:52:21 -0700
committerAndrew Kelley <andrew@ziglang.org>2022-04-22 07:52:21 -0700
commit0e830b16306945ffc74ef95198eb74743ab9f184 (patch)
treee19d5d14323ae797495027f33fbb63120fce660b /test/behavior/array.zig
parentc992b259085070b4faef10f498840d2d3ce394fa (diff)
downloadzig-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.zig6
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 },