aboutsummaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorRobin Voetter <robin@voetter.nl>2023-10-07 19:43:27 +0200
committerRobin Voetter <robin@voetter.nl>2023-10-15 14:00:00 +0200
commit4a6a024a4bd103cf7bf7e50a5ccf4103f4ce83a2 (patch)
tree36411f3b31fc18c7d561c4efd1f421838f208bcf /test
parent89b1dafa7808d22eab78ea486f158f794da46a2c (diff)
downloadzig-4a6a024a4bd103cf7bf7e50a5ccf4103f4ce83a2.tar.gz
zig-4a6a024a4bd103cf7bf7e50a5ccf4103f4ce83a2.zip
spirv: properly skip comptime function parameters
Diffstat (limited to 'test')
-rw-r--r--test/behavior/struct.zig6
1 files changed, 0 insertions, 6 deletions
diff --git a/test/behavior/struct.zig b/test/behavior/struct.zig
index 8db14affcf..316bc6d2cc 100644
--- a/test/behavior/struct.zig
+++ b/test/behavior/struct.zig
@@ -887,8 +887,6 @@ test "anonymous struct literal syntax" {
}
test "fully anonymous struct" {
- if (builtin.zig_backend == .stage2_spirv64) return error.SkipZigTest;
-
const S = struct {
fn doTheTest() !void {
try dump(.{
@@ -911,8 +909,6 @@ test "fully anonymous struct" {
}
test "fully anonymous list literal" {
- if (builtin.zig_backend == .stage2_spirv64) return error.SkipZigTest;
-
const S = struct {
fn doTheTest() !void {
try dump(.{ @as(u32, 1234), @as(f64, 12.34), true, "hi" });
@@ -1715,8 +1711,6 @@ test "extern struct field pointer has correct alignment" {
}
test "packed struct field in anonymous struct" {
- if (builtin.zig_backend == .stage2_spirv64) return error.SkipZigTest;
-
const T = packed struct {
f1: bool = false,
};