x86_64: disable failing tests, enable test-std testing

This commit is contained in:
Jacob Young
2023-10-20 04:35:29 -04:00
parent 2e6e39a700
commit 32e85d44eb
56 changed files with 447 additions and 17 deletions

View File

@@ -705,6 +705,8 @@ test "std.PriorityDequeue: fromOwnedSlice trivial case 1" {
}
test "std.PriorityDequeue: 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 queue_items = try testing.allocator.dupe(u32, items[0..]);
var queue = PDQ.fromOwnedSlice(testing.allocator, queue_items[0..], {});