Skip to content

Commit 214750f

Browse files
rootbeeralexrp
authored andcommitted
lib/std/Build/Cache.zig: remove .wasi SkipZigTest checks
The build Cache test pass on Wasi now. Fixes #5437
1 parent db77e46 commit 214750f

File tree

1 file changed

+0
-20
lines changed

1 file changed

+0
-20
lines changed

lib/std/Build/Cache.zig

Lines changed: 0 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -1254,11 +1254,6 @@ fn testGetCurrentFileTimestamp(dir: fs.Dir) !i128 {
12541254
}
12551255

12561256
test "cache file and then recall it" {
1257-
if (builtin.os.tag == .wasi) {
1258-
// https://github.com/ziglang/zig/issues/5437
1259-
return error.SkipZigTest;
1260-
}
1261-
12621257
var tmp = testing.tmpDir(.{});
12631258
defer tmp.cleanup();
12641259

@@ -1320,11 +1315,6 @@ test "cache file and then recall it" {
13201315
}
13211316

13221317
test "check that changing a file makes cache fail" {
1323-
if (builtin.os.tag == .wasi) {
1324-
// https://github.com/ziglang/zig/issues/5437
1325-
return error.SkipZigTest;
1326-
}
1327-
13281318
var tmp = testing.tmpDir(.{});
13291319
defer tmp.cleanup();
13301320

@@ -1394,11 +1384,6 @@ test "check that changing a file makes cache fail" {
13941384
}
13951385

13961386
test "no file inputs" {
1397-
if (builtin.os.tag == .wasi) {
1398-
// https://github.com/ziglang/zig/issues/5437
1399-
return error.SkipZigTest;
1400-
}
1401-
14021387
var tmp = testing.tmpDir(.{});
14031388
defer tmp.cleanup();
14041389

@@ -1442,11 +1427,6 @@ test "no file inputs" {
14421427
}
14431428

14441429
test "Manifest with files added after initial hash work" {
1445-
if (builtin.os.tag == .wasi) {
1446-
// https://github.com/ziglang/zig/issues/5437
1447-
return error.SkipZigTest;
1448-
}
1449-
14501430
var tmp = testing.tmpDir(.{});
14511431
defer tmp.cleanup();
14521432

0 commit comments

Comments
 (0)