Skip to content

Commit 2afa18a

Browse files
committed
test: Enable some working vector tests
Closes #12827.
1 parent 6810ffa commit 2afa18a

File tree

2 files changed

+0
-12
lines changed

2 files changed

+0
-12
lines changed

test/behavior/abs.zig

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -343,11 +343,6 @@ test "@abs float vectors" {
343343
if (builtin.zig_backend == .stage2_riscv64) return error.SkipZigTest;
344344
if (builtin.zig_backend == .stage2_x86_64 and builtin.target.ofmt != .elf and builtin.target.ofmt != .macho) return error.SkipZigTest;
345345

346-
// https://github.com/ziglang/zig/issues/12827
347-
if (builtin.zig_backend == .stage2_llvm and
348-
builtin.os.tag == .macos and
349-
builtin.target.cpu.arch == .x86_64) return error.SkipZigTest;
350-
351346
@setEvalBranchQuota(2000);
352347
try comptime testAbsFloatVectors(f16, 1);
353348
try testAbsFloatVectors(f16, 1);

test/behavior/vector.zig

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -357,13 +357,6 @@ test "vector @splat" {
357357
if (builtin.zig_backend == .stage2_spirv64) return error.SkipZigTest;
358358
if (builtin.zig_backend == .stage2_x86_64 and builtin.target.ofmt != .elf and builtin.target.ofmt != .macho) return error.SkipZigTest;
359359

360-
if (builtin.zig_backend == .stage2_llvm and
361-
builtin.os.tag == .macos)
362-
{
363-
// LLVM 15 regression: https://github.com/ziglang/zig/issues/12827
364-
return error.SkipZigTest;
365-
}
366-
367360
const S = struct {
368361
fn testForT(comptime N: comptime_int, v: anytype) !void {
369362
const T = @TypeOf(v);

0 commit comments

Comments
 (0)