| ... | @@ -328,6 +328,8 @@ fn extendedUnionSize(comptime Operand: type, operand: Operand) usize { | ... | @@ -328,6 +328,8 @@ fn extendedUnionSize(comptime Operand: type, operand: Operand) usize { |
| 328 | } | 328 | } |
| 329 | | 329 | |
| 330 | test "SPIR-V Section emit() - no operands" { | 330 | test "SPIR-V Section emit() - no operands" { |
| | 331 | if (@import("builtin").zig_backend == .stage1) return error.SkipZigTest; |
| | 332 | |
| 331 | var section = Section{}; | 333 | var section = Section{}; |
| 332 | defer section.deinit(std.testing.allocator); | 334 | defer section.deinit(std.testing.allocator); |
| 333 | | 335 | |
| ... | @@ -337,6 +339,8 @@ test "SPIR-V Section emit() - no operands" { | ... | @@ -337,6 +339,8 @@ test "SPIR-V Section emit() - no operands" { |
| 337 | } | 339 | } |
| 338 | | 340 | |
| 339 | test "SPIR-V Section emit() - simple" { | 341 | test "SPIR-V Section emit() - simple" { |
| | 342 | if (@import("builtin").zig_backend == .stage1) return error.SkipZigTest; |
| | 343 | |
| 340 | var section = Section{}; | 344 | var section = Section{}; |
| 341 | defer section.deinit(std.testing.allocator); | 345 | defer section.deinit(std.testing.allocator); |
| 342 | | 346 | |
| ... | @@ -353,6 +357,8 @@ test "SPIR-V Section emit() - simple" { | ... | @@ -353,6 +357,8 @@ test "SPIR-V Section emit() - simple" { |
| 353 | } | 357 | } |
| 354 | | 358 | |
| 355 | test "SPIR-V Section emit() - string" { | 359 | test "SPIR-V Section emit() - string" { |
| | 360 | if (@import("builtin").zig_backend == .stage1) return error.SkipZigTest; |
| | 361 | |
| 356 | var section = Section{}; | 362 | var section = Section{}; |
| 357 | defer section.deinit(std.testing.allocator); | 363 | defer section.deinit(std.testing.allocator); |
| 358 | | 364 | |
| ... | @@ -378,6 +384,8 @@ test "SPIR-V Section emit() - string" { | ... | @@ -378,6 +384,8 @@ test "SPIR-V Section emit() - string" { |
| 378 | } | 384 | } |
| 379 | | 385 | |
| 380 | test "SPIR-V Section emit()- extended mask" { | 386 | test "SPIR-V Section emit()- extended mask" { |
| | 387 | if (@import("builtin").zig_backend == .stage1) return error.SkipZigTest; |
| | 388 | |
| 381 | var section = Section{}; | 389 | var section = Section{}; |
| 382 | defer section.deinit(std.testing.allocator); | 390 | defer section.deinit(std.testing.allocator); |
| 383 | | 391 | |
| ... | @@ -402,6 +410,8 @@ test "SPIR-V Section emit()- extended mask" { | ... | @@ -402,6 +410,8 @@ test "SPIR-V Section emit()- extended mask" { |
| 402 | } | 410 | } |
| 403 | | 411 | |
| 404 | test "SPIR-V Section emit() - extended union" { | 412 | test "SPIR-V Section emit() - extended union" { |
| | 413 | if (@import("builtin").zig_backend == .stage1) return error.SkipZigTest; |
| | 414 | |
| 405 | var section = Section{}; | 415 | var section = Section{}; |
| 406 | defer section.deinit(std.testing.allocator); | 416 | defer section.deinit(std.testing.allocator); |
| 407 | | 417 | |