Skip to content

Commit

Permalink
enable passing behavior test
Browse files Browse the repository at this point in the history
This was fixed by 8a0a6b7

Closes #13279
  • Loading branch information
Vexu committed Dec 21, 2022
1 parent d933e4e commit a12d57a
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions test/behavior/vector.zig
Original file line number Diff line number Diff line change
Expand Up @@ -1128,8 +1128,12 @@ test "byte vector initialized in inline function" {
}

test "byte vector initialized in inline function" {
// TODO https://github.com/ziglang/zig/issues/13279
if (true) return error.SkipZigTest;
if (builtin.zig_backend == .stage2_c) return error.SkipZigTest; // TODO
if (builtin.zig_backend == .stage2_wasm) return error.SkipZigTest; // TODO
if (builtin.zig_backend == .stage2_x86_64) return error.SkipZigTest; // TODO
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_sparc64) return error.SkipZigTest; // TODO

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

0 comments on commit a12d57a

Please sign in to comment.