Skip to content

Commit 634a02d

Browse files
committed
test: Enable some working vector tests
1 parent 4d79806 commit 634a02d

File tree

1 file changed

+0
-13
lines changed

1 file changed

+0
-13
lines changed

test/behavior/vector.zig

Lines changed: 0 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -106,12 +106,6 @@ test "vector float operators" {
106106
if (builtin.zig_backend == .stage2_c and builtin.cpu.arch.isArm()) return error.SkipZigTest;
107107
if (builtin.zig_backend == .stage2_x86_64 and builtin.target.ofmt != .elf and builtin.target.ofmt != .macho) return error.SkipZigTest;
108108

109-
if (builtin.zig_backend == .stage2_llvm and builtin.cpu.arch == .aarch64) {
110-
// Triggers an assertion with LLVM 18:
111-
// https://github.com/ziglang/zig/issues/20680
112-
return error.SkipZigTest;
113-
}
114-
115109
const S = struct {
116110
fn doTheTest(T: type) !void {
117111
var v: @Vector(4, T) = .{ 10, 20, 30, 40 };
@@ -357,13 +351,6 @@ test "vector @splat" {
357351
if (builtin.zig_backend == .stage2_spirv64) return error.SkipZigTest;
358352
if (builtin.zig_backend == .stage2_x86_64 and builtin.target.ofmt != .elf and builtin.target.ofmt != .macho) return error.SkipZigTest;
359353

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-
367354
const S = struct {
368355
fn testForT(comptime N: comptime_int, v: anytype) !void {
369356
const T = @TypeOf(v);

0 commit comments

Comments
 (0)