diff options
| author | Jacob Young <jacobly0@users.noreply.github.com> | 2023-10-22 15:46:33 -0400 |
|---|---|---|
| committer | Jacob Young <jacobly0@users.noreply.github.com> | 2023-10-22 15:46:43 -0400 |
| commit | 27fe945a00956c8e727ca4c5409c6b716bc09a6d (patch) | |
| tree | c9427aa9886e8d7f84c50f2ef12407cc80fa61d1 /lib/std/priority_queue.zig | |
| parent | 6f0198cadbe29294f2bf3153a27beebd64377566 (diff) | |
| download | zig-27fe945a00956c8e727ca4c5409c6b716bc09a6d.tar.gz zig-27fe945a00956c8e727ca4c5409c6b716bc09a6d.zip | |
Revert "Revert "Merge pull request #17637 from jacobly0/x86_64-test-std""
This reverts commit 6f0198cadbe29294f2bf3153a27beebd64377566.
Diffstat (limited to 'lib/std/priority_queue.zig')
| -rw-r--r-- | lib/std/priority_queue.zig | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/std/priority_queue.zig b/lib/std/priority_queue.zig index a568eeadcf..84ee9d6cdf 100644 --- a/lib/std/priority_queue.zig +++ b/lib/std/priority_queue.zig @@ -385,6 +385,8 @@ test "std.PriorityQueue: fromOwnedSlice trivial case 1" { } test "std.PriorityQueue: fromOwnedSlice" { + if (@import("builtin").zig_backend == .stage2_x86_64) return error.SkipZigTest; + const items = [_]u32{ 15, 7, 21, 14, 13, 22, 12, 6, 7, 25, 5, 24, 11, 16, 15, 24, 2, 1 }; const heap_items = try testing.allocator.dupe(u32, items[0..]); var queue = PQlt.fromOwnedSlice(testing.allocator, heap_items[0..], {}); |
