Skip to content

Commit a12d57a

Browse files
committed
enable passing behavior test
This was fixed by 8a0a6b7 Closes #13279
1 parent d933e4e commit a12d57a

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

test/behavior/vector.zig

+6-2
Original file line numberDiff line numberDiff line change
@@ -1128,8 +1128,12 @@ test "byte vector initialized in inline function" {
11281128
}
11291129

11301130
test "byte vector initialized in inline function" {
1131-
// TODO https://github.com/ziglang/zig/issues/13279
1132-
if (true) return error.SkipZigTest;
1131+
if (builtin.zig_backend == .stage2_c) return error.SkipZigTest; // TODO
1132+
if (builtin.zig_backend == .stage2_wasm) return error.SkipZigTest; // TODO
1133+
if (builtin.zig_backend == .stage2_x86_64) return error.SkipZigTest; // TODO
1134+
if (builtin.zig_backend == .stage2_aarch64) return error.SkipZigTest; // TODO
1135+
if (builtin.zig_backend == .stage2_arm) return error.SkipZigTest; // TODO
1136+
if (builtin.zig_backend == .stage2_sparc64) return error.SkipZigTest; // TODO
11331137

11341138
const S = struct {
11351139
fn boolx4(e0: bool, e1: bool, e2: bool, e3: bool) @Vector(4, bool) {

0 commit comments

Comments
 (0)