mirror of
https://codeberg.org/ziglang/zig.git
synced 2026-04-27 19:09:47 +03:00
Reenable vector tests for armeb/thumbeb
https://github.com/ziglang/zig/issues/22060 has been fixed by upstream.
This commit is contained in:
@@ -638,7 +638,6 @@ test "vector division operators" {
|
||||
};
|
||||
|
||||
try comptime S.doTheTest();
|
||||
if ((builtin.cpu.arch == .armeb or builtin.cpu.arch == .thumbeb) and builtin.zig_backend == .stage2_llvm) return error.SkipZigTest; // https://github.com/ziglang/zig/issues/22060
|
||||
if (builtin.cpu.arch == .hexagon and builtin.zig_backend == .stage2_llvm) return error.SkipZigTest;
|
||||
try S.doTheTest();
|
||||
}
|
||||
@@ -1119,7 +1118,6 @@ test "@addWithOverflow" {
|
||||
}
|
||||
};
|
||||
try comptime S.doTheTest();
|
||||
if ((builtin.cpu.arch == .armeb or builtin.cpu.arch == .thumbeb) and builtin.zig_backend == .stage2_llvm) return error.SkipZigTest; // https://github.com/ziglang/zig/issues/22060
|
||||
try S.doTheTest();
|
||||
}
|
||||
|
||||
@@ -1153,7 +1151,6 @@ test "@subWithOverflow" {
|
||||
}
|
||||
};
|
||||
try comptime S.doTheTest();
|
||||
if ((builtin.cpu.arch == .armeb or builtin.cpu.arch == .thumbeb) and builtin.zig_backend == .stage2_llvm) return error.SkipZigTest; // https://github.com/ziglang/zig/issues/22060
|
||||
try S.doTheTest();
|
||||
}
|
||||
|
||||
@@ -1176,7 +1173,6 @@ test "@mulWithOverflow" {
|
||||
}
|
||||
};
|
||||
try comptime S.doTheTest();
|
||||
if ((builtin.cpu.arch == .armeb or builtin.cpu.arch == .thumbeb) and builtin.zig_backend == .stage2_llvm) return error.SkipZigTest; // https://github.com/ziglang/zig/issues/22060
|
||||
try S.doTheTest();
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user