authorgravatar for pat.github@tullmann.orgPat Tullmann <pat.github@tullmann.org> 2025-03-05 14:04:26-08:00
committergravatar for alex@alexrp.comAlex Rønne Petersen <alex@alexrp.com> 2025-03-08 04:38:29+01:00
log214750fcfe98152a0d00087d0269b25a271a49de
tree2d1e229b4ff9eea79d4473ae58a1b9a6d5b0581b
parentdb77e46b4967325cd05aa561979f04514efe1dfa

lib/std/Build/Cache.zig: remove .wasi SkipZigTest checks

The build Cache test pass on Wasi now. Fixes #5437

1 files changed, 0 insertions(+), 20 deletions(-)

lib/std/Build/Cache.zig-20
......@@ -1254,11 +1254,6 @@ fn testGetCurrentFileTimestamp(dir: fs.Dir) !i128 {
12541254}
12551255
12561256test "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
13221317test "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
13961386test "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
14441429test "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