| ... | @@ -1330,7 +1330,6 @@ fn testStaticBitSet(comptime Set: type) !void { | ... | @@ -1330,7 +1330,6 @@ fn testStaticBitSet(comptime Set: type) !void { |
| 1330 | } | 1330 | } |
| 1331 | | 1331 | |
| 1332 | test "IntegerBitSet" { | 1332 | test "IntegerBitSet" { |
| 1333 | if (@import("builtin").zig_backend != .stage1) return error.SkipZigTest; // TODO | | |
| 1334 | try testStaticBitSet(IntegerBitSet(0)); | 1333 | try testStaticBitSet(IntegerBitSet(0)); |
| 1335 | try testStaticBitSet(IntegerBitSet(1)); | 1334 | try testStaticBitSet(IntegerBitSet(1)); |
| 1336 | try testStaticBitSet(IntegerBitSet(2)); | 1335 | try testStaticBitSet(IntegerBitSet(2)); |
| ... | @@ -1342,7 +1341,6 @@ test "IntegerBitSet" { | ... | @@ -1342,7 +1341,6 @@ test "IntegerBitSet" { |
| 1342 | } | 1341 | } |
| 1343 | | 1342 | |
| 1344 | test "ArrayBitSet" { | 1343 | test "ArrayBitSet" { |
| 1345 | if (@import("builtin").zig_backend != .stage1) return error.SkipZigTest; // TODO | | |
| 1346 | if (@import("builtin").cpu.arch == .aarch64) { | 1344 | if (@import("builtin").cpu.arch == .aarch64) { |
| 1347 | // https://github.com/ziglang/zig/issues/9879 | 1345 | // https://github.com/ziglang/zig/issues/9879 |
| 1348 | return error.SkipZigTest; | 1346 | return error.SkipZigTest; |
| ... | @@ -1357,7 +1355,6 @@ test "ArrayBitSet" { | ... | @@ -1357,7 +1355,6 @@ test "ArrayBitSet" { |
| 1357 | } | 1355 | } |
| 1358 | | 1356 | |
| 1359 | test "DynamicBitSetUnmanaged" { | 1357 | test "DynamicBitSetUnmanaged" { |
| 1360 | if (@import("builtin").zig_backend != .stage1) return error.SkipZigTest; // TODO | | |
| 1361 | const allocator = std.testing.allocator; | 1358 | const allocator = std.testing.allocator; |
| 1362 | var a = try DynamicBitSetUnmanaged.initEmpty(allocator, 300); | 1359 | var a = try DynamicBitSetUnmanaged.initEmpty(allocator, 300); |
| 1363 | try testing.expectEqual(@as(usize, 0), a.count()); | 1360 | try testing.expectEqual(@as(usize, 0), a.count()); |
| ... | @@ -1398,7 +1395,6 @@ test "DynamicBitSetUnmanaged" { | ... | @@ -1398,7 +1395,6 @@ test "DynamicBitSetUnmanaged" { |
| 1398 | } | 1395 | } |
| 1399 | | 1396 | |
| 1400 | test "DynamicBitSet" { | 1397 | test "DynamicBitSet" { |
| 1401 | if (@import("builtin").zig_backend != .stage1) return error.SkipZigTest; // TODO | | |
| 1402 | const allocator = std.testing.allocator; | 1398 | const allocator = std.testing.allocator; |
| 1403 | var a = try DynamicBitSet.initEmpty(allocator, 300); | 1399 | var a = try DynamicBitSet.initEmpty(allocator, 300); |
| 1404 | try testing.expectEqual(@as(usize, 0), a.count()); | 1400 | try testing.expectEqual(@as(usize, 0), a.count()); |