mirror of
https://github.com/ziglang/zig.git
synced 2026-02-21 08:45:52 +00:00
std: Reactivate skipped tests w.r.t. llvm/llvm-project#55522
This commit is contained in:
parent
ceaae42e90
commit
37398ed2a5
@ -316,12 +316,6 @@ pub fn zeroes(comptime T: type) T {
|
||||
}
|
||||
|
||||
test "zeroes" {
|
||||
if (builtin.zig_backend == .stage2_llvm) {
|
||||
// Regressed in LLVM 14:
|
||||
// https://github.com/llvm/llvm-project/issues/55522
|
||||
return error.SkipZigTest;
|
||||
}
|
||||
|
||||
const C_struct = extern struct {
|
||||
x: u32,
|
||||
y: u32,
|
||||
|
||||
@ -428,12 +428,6 @@ test "vector prefix scan" {
|
||||
return error.SkipZigTest;
|
||||
}
|
||||
|
||||
if (builtin.zig_backend == .stage2_llvm) {
|
||||
// Regressed in LLVM 14:
|
||||
// https://github.com/llvm/llvm-project/issues/55522
|
||||
return error.SkipZigTest;
|
||||
}
|
||||
|
||||
const int_base = @Vector(4, i32){ 11, 23, 9, -21 };
|
||||
const float_base = @Vector(4, f32){ 2, 0.5, -10, 6.54321 };
|
||||
const bool_base = @Vector(4, bool){ true, false, true, false };
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user