aboutsummaryrefslogtreecommitdiff
path: root/test/behavior/floatop.zig
diff options
context:
space:
mode:
authorAli Chraghi <alichraghi@proton.me>2024-02-08 02:02:33 +0330
committerAli Chraghi <alichraghi@proton.me>2024-02-09 09:27:08 +0330
commit37b0aa600ad47872d3a03f9e9fb60316fc3587c5 (patch)
treef10a2241876fdd27135a62a6112d0d98d0a5f8ef /test/behavior/floatop.zig
parenteb2d61d02e503f01070c05e2e1fc87e827124d94 (diff)
downloadzig-37b0aa600ad47872d3a03f9e9fb60316fc3587c5.tar.gz
zig-37b0aa600ad47872d3a03f9e9fb60316fc3587c5.zip
spirv: make rusticl the primary testing implementation
Diffstat (limited to 'test/behavior/floatop.zig')
-rw-r--r--test/behavior/floatop.zig2
1 files changed, 2 insertions, 0 deletions
diff --git a/test/behavior/floatop.zig b/test/behavior/floatop.zig
index 1d6ce2edc5..46b4e9cfce 100644
--- a/test/behavior/floatop.zig
+++ b/test/behavior/floatop.zig
@@ -127,6 +127,7 @@ test "cmp f16" {
test "cmp f32/f64" {
if (builtin.zig_backend == .stage2_sparc64) return error.SkipZigTest; // TODO
if (builtin.zig_backend == .stage2_x86_64 and builtin.target.ofmt != .elf and builtin.target.ofmt != .macho) return error.SkipZigTest;
+ if (builtin.zig_backend == .stage2_spirv64) return error.SkipZigTest;
try testCmp(f32);
try comptime testCmp(f32);
@@ -978,6 +979,7 @@ test "@abs f32/f64" {
if (builtin.zig_backend == .stage2_arm) return error.SkipZigTest; // TODO
if (builtin.zig_backend == .stage2_aarch64) return error.SkipZigTest; // TODO
if (builtin.zig_backend == .stage2_sparc64) return error.SkipZigTest; // TODO
+ if (builtin.zig_backend == .stage2_spirv64) return error.SkipZigTest;
try testFabs(f32);
try comptime testFabs(f32);