mirror of
https://codeberg.org/ziglang/zig.git
synced 2025-12-06 13:54:21 +00:00
c-abi: enable passing tests
This commit is contained in:
parent
125b453c58
commit
97ae2d2c29
1 changed files with 0 additions and 10 deletions
|
|
@ -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();
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue