aboutsummaryrefslogtreecommitdiff
path: root/test/behavior/array.zig
diff options
context:
space:
mode:
authorJakub Konka <kubkon@jakubkonka.com>2022-01-20 20:26:09 +0100
committerGitHub <noreply@github.com>2022-01-20 20:26:09 +0100
commiteb70f6e8d7f4c1a735fe25de368f6d5459cba16c (patch)
treee81e0f8798332aa7ae6580e3931bf29e400d1786 /test/behavior/array.zig
parent664e1a892c3b3a1162fa5b8eaa3762ad581b1d1b (diff)
parentb9fe6a93ff51ecb5ce770c78f463c38a0620de49 (diff)
downloadzig-eb70f6e8d7f4c1a735fe25de368f6d5459cba16c.tar.gz
zig-eb70f6e8d7f4c1a735fe25de368f6d5459cba16c.zip
Merge pull request #10638 from Luukdegram/wasm-refactor
Stage2: wasm - Refactor lowering constants
Diffstat (limited to 'test/behavior/array.zig')
-rw-r--r--test/behavior/array.zig7
1 files changed, 0 insertions, 7 deletions
diff --git a/test/behavior/array.zig b/test/behavior/array.zig
index 98077cb75e..0450d0781b 100644
--- a/test/behavior/array.zig
+++ b/test/behavior/array.zig
@@ -146,13 +146,6 @@ test "void arrays" {
test "nested arrays" {
if (builtin.zig_backend == .stage2_x86_64 or builtin.zig_backend == .stage2_arm) return error.SkipZigTest;
- if (builtin.zig_backend == .stage2_wasm) {
- // TODO this is a recent stage2 test case regression due to an enhancement;
- // now arrays are properly detected as comptime. This exercised a new code
- // path in the wasm backend that is not yet implemented.
- return error.SkipZigTest;
- }
-
const array_of_strings = [_][]const u8{ "hello", "this", "is", "my", "thing" };
for (array_of_strings) |s, i| {
if (i == 0) try expect(mem.eql(u8, s, "hello"));