diff options
| author | Jakub Konka <kubkon@jakubkonka.com> | 2022-03-01 09:14:23 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-03-01 09:14:23 +0100 |
| commit | ec54ceee6d34a61734ac6759ffdbd75248a2f3d7 (patch) | |
| tree | 21f600733435a9f63674c131b3d1df421b0618a7 /test/behavior/enum.zig | |
| parent | f5a31cb0d693ef3c07da7f446c95999cef34488b (diff) | |
| parent | cfbc3537ef0b3a73d5b8fdd358cf3bb831935861 (diff) | |
| download | zig-ec54ceee6d34a61734ac6759ffdbd75248a2f3d7.tar.gz zig-ec54ceee6d34a61734ac6759ffdbd75248a2f3d7.zip | |
Merge pull request #11016 from ziglang/x64-more-codegen
Diffstat (limited to 'test/behavior/enum.zig')
| -rw-r--r-- | test/behavior/enum.zig | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/test/behavior/enum.zig b/test/behavior/enum.zig index 8b56503ec3..d47ec50f5d 100644 --- a/test/behavior/enum.zig +++ b/test/behavior/enum.zig @@ -616,7 +616,6 @@ fn testEnumWithSpecifiedTagValues(x: MultipleChoice) !void { } test "enum with specified tag values" { - if (builtin.zig_backend == .stage2_x86_64) return error.SkipZigTest; if (builtin.zig_backend == .stage2_arm) return error.SkipZigTest; if (builtin.zig_backend == .stage2_aarch64) return error.SkipZigTest; @@ -625,7 +624,6 @@ test "enum with specified tag values" { } test "non-exhaustive enum" { - if (builtin.zig_backend == .stage2_x86_64) return error.SkipZigTest; if (builtin.zig_backend == .stage2_arm) return error.SkipZigTest; if (builtin.zig_backend == .stage2_aarch64) return error.SkipZigTest; @@ -691,7 +689,6 @@ test "empty non-exhaustive enum" { } test "single field non-exhaustive enum" { - if (builtin.zig_backend == .stage2_x86_64) return error.SkipZigTest; if (builtin.zig_backend == .stage2_arm) return error.SkipZigTest; if (builtin.zig_backend == .stage2_aarch64) return error.SkipZigTest; @@ -760,7 +757,6 @@ test "cast integer literal to enum" { } test "enum with specified and unspecified tag values" { - if (builtin.zig_backend == .stage2_x86_64) return error.SkipZigTest; if (builtin.zig_backend == .stage2_arm) return error.SkipZigTest; if (builtin.zig_backend == .stage2_aarch64) return error.SkipZigTest; @@ -942,7 +938,6 @@ test "enum value allocation" { } test "enum literal casting to tagged union" { - if (builtin.zig_backend == .stage2_x86_64) return error.SkipZigTest; if (builtin.zig_backend == .stage2_arm) return error.SkipZigTest; if (builtin.zig_backend == .stage2_aarch64) return error.SkipZigTest; @@ -968,7 +963,6 @@ test "enum literal casting to tagged union" { const Bar = enum { A, B, C, D }; test "enum literal casting to error union with payload enum" { - if (builtin.zig_backend == .stage2_x86_64) return error.SkipZigTest; if (builtin.zig_backend == .stage2_arm) return error.SkipZigTest; if (builtin.zig_backend == .stage2_aarch64) return error.SkipZigTest; |
