commit 97ae2d2c29f827ebb73abbc0317cd39ac4ca4c9b (tree)
parent 125b453c58b6d94a628c94d46e5038e06183c54c
Author: Jacob Young <jacobly0@users.noreply.github.com>
Date: Fri, 28 Jul 2023 13:31:19 -0400
c-abi: enable passing tests
Diffstat:
1 file changed, 0 insertions(+), 10 deletions(-)
diff --git a/test/c_abi/main.zig b/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();