diff options
| author | Jacob Young <jacobly0@users.noreply.github.com> | 2023-04-27 03:24:48 -0400 |
|---|---|---|
| committer | Jacob Young <jacobly0@users.noreply.github.com> | 2023-05-01 19:22:52 -0400 |
| commit | 6de457211fe4f261fab6c30f652f833ed2a144b5 (patch) | |
| tree | ce11e8bd26293bc58fc177e7ea0fe6534ee5d9df /test/behavior/enum.zig | |
| parent | 4ec49da5f6a6a8e77cdb66b8f814718bf11fffef (diff) | |
| download | zig-6de457211fe4f261fab6c30f652f833ed2a144b5.tar.gz zig-6de457211fe4f261fab6c30f652f833ed2a144b5.zip | |
behavior: update affected tests for the x86_64 backend
Diffstat (limited to 'test/behavior/enum.zig')
| -rw-r--r-- | test/behavior/enum.zig | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/test/behavior/enum.zig b/test/behavior/enum.zig index 316275d6ac..de5c0efb8e 100644 --- a/test/behavior/enum.zig +++ b/test/behavior/enum.zig @@ -940,6 +940,8 @@ test "constant enum initialization with differing sizes" { if (builtin.zig_backend == .stage2_arm) return error.SkipZigTest; if (builtin.zig_backend == .stage2_aarch64) return error.SkipZigTest; if (builtin.zig_backend == .stage2_sparc64) return error.SkipZigTest; // TODO + if (builtin.zig_backend == .stage2_x86_64 and + comptime !std.Target.x86.featureSetHasAll(builtin.cpu.features, .{ .sse, .sse2, .sse4_1 })) return error.SkipZigTest; // TODO try test3_1(test3_foo); try test3_2(test3_bar); |
