aboutsummaryrefslogtreecommitdiff
path: root/test/behavior/call.zig
diff options
context:
space:
mode:
authorRobin Voetter <robin@voetter.nl>2023-05-19 11:23:22 +0200
committerRobin Voetter <robin@voetter.nl>2023-05-20 17:30:22 +0200
commit37aa343079d32db96be742c9740f343ff8d2839e (patch)
tree2581c5c6e0925534ecf8aebe686535628b4b3d34 /test/behavior/call.zig
parent2f28713bd7c8eefd90d59d69a0786ee3f12400e1 (diff)
downloadzig-37aa343079d32db96be742c9740f343ff8d2839e.tar.gz
zig-37aa343079d32db96be742c9740f343ff8d2839e.zip
spirv: more passing tests
Diffstat (limited to 'test/behavior/call.zig')
-rw-r--r--test/behavior/call.zig3
1 files changed, 0 insertions, 3 deletions
diff --git a/test/behavior/call.zig b/test/behavior/call.zig
index e7d59d7e75..76225d815d 100644
--- a/test/behavior/call.zig
+++ b/test/behavior/call.zig
@@ -109,7 +109,6 @@ test "result location of function call argument through runtime condition and st
test "function call with 40 arguments" {
if (builtin.zig_backend == .stage2_sparc64) return error.SkipZigTest; // TODO
- if (builtin.zig_backend == .stage2_spirv64) return error.SkipZigTest;
const S = struct {
fn doTheTest(thirty_nine: i32) !void {
@@ -374,8 +373,6 @@ test "Enum constructed by @Type passed as generic argument" {
}
test "generic function with generic function parameter" {
- if (builtin.zig_backend == .stage2_spirv64) return error.SkipZigTest;
-
const S = struct {
fn f(comptime a: fn (anytype) anyerror!void, b: anytype) anyerror!void {
try a(b);