c-abi: enable passing tests

This commit is contained in:
Jacob Young 2023-07-28 13:31:19 -04:00
parent 125b453c58
commit 97ae2d2c29

View file

@ -853,11 +853,6 @@ extern fn c_ret_medium_vec() MediumVec;
test "medium simd vector" {
if (comptime builtin.cpu.arch.isPPC64()) return error.SkipZigTest;
if (builtin.cpu.arch == .x86_64 and builtin.os.tag == .linux) {
// TODO: https://github.com/ziglang/zig/issues/14908
return error.SkipZigTest;
}
c_medium_vec(.{ 1, 2, 3, 4 });
var x = c_ret_medium_vec();
@ -877,11 +872,6 @@ test "big simd vector" {
if (comptime builtin.cpu.arch.isPPC64()) return error.SkipZigTest;
if (builtin.cpu.arch == .x86_64 and builtin.os.tag == .macos and builtin.mode != .Debug) return error.SkipZigTest;
if (builtin.cpu.arch == .x86_64 and builtin.os.tag == .linux) {
// TODO: https://github.com/ziglang/zig/issues/14908
return error.SkipZigTest;
}
c_big_vec(.{ 1, 2, 3, 4, 5, 6, 7, 8 });
var x = c_ret_big_vec();