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