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 {...@@ -1254,11 +1254,6 @@ fn testGetCurrentFileTimestamp(dir: fs.Dir) !i128 {
1254}1254}
12551255
1256test "cache file and then recall it" {1256test "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
1262 var tmp = testing.tmpDir(.{});1257 var tmp = testing.tmpDir(.{});
1263 defer tmp.cleanup();1258 defer tmp.cleanup();
12641259
...@@ -1320,11 +1315,6 @@ test "cache file and then recall it" {...@@ -1320,11 +1315,6 @@ test "cache file and then recall it" {
1320}1315}
13211316
1322test "check that changing a file makes cache fail" {1317test "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
1328 var tmp = testing.tmpDir(.{});1318 var tmp = testing.tmpDir(.{});
1329 defer tmp.cleanup();1319 defer tmp.cleanup();
13301320
...@@ -1394,11 +1384,6 @@ test "check that changing a file makes cache fail" {...@@ -1394,11 +1384,6 @@ test "check that changing a file makes cache fail" {
1394}1384}
13951385
1396test "no file inputs" {1386test "no file inputs" {
1397 if (builtin.os.tag == .wasi) {
1398 // https://github.com/ziglang/zig/issues/5437
1399 return error.SkipZigTest;
1400 }
1401
1402 var tmp = testing.tmpDir(.{});1387 var tmp = testing.tmpDir(.{});
1403 defer tmp.cleanup();1388 defer tmp.cleanup();
14041389
...@@ -1442,11 +1427,6 @@ test "no file inputs" {...@@ -1442,11 +1427,6 @@ test "no file inputs" {
1442}1427}
14431428
1444test "Manifest with files added after initial hash work" {1429test "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
1450 var tmp = testing.tmpDir(.{});1430 var tmp = testing.tmpDir(.{});
1451 defer tmp.cleanup();1431 defer tmp.cleanup();
14521432