Commit 97ae2d2c29

Jacob Young <jacobly0@users.noreply.github.com>
2023-07-28 19:31:19
c-abi: enable passing tests
1 parent 125b453
Changed files (1)
test
c_abi
test/c_abi/main.zig
@@ -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();