aboutsummaryrefslogtreecommitdiff
path: root/lib/std/Build
diff options
context:
space:
mode:
authorPat Tullmann <pat.github@tullmann.org>2025-03-05 14:04:26 -0800
committerAlex Rønne Petersen <alex@alexrp.com>2025-03-08 04:38:29 +0100
commit214750fcfe98152a0d00087d0269b25a271a49de (patch)
tree2d1e229b4ff9eea79d4473ae58a1b9a6d5b0581b /lib/std/Build
parentdb77e46b4967325cd05aa561979f04514efe1dfa (diff)
downloadzig-214750fcfe98152a0d00087d0269b25a271a49de.tar.gz
zig-214750fcfe98152a0d00087d0269b25a271a49de.zip
lib/std/Build/Cache.zig: remove .wasi SkipZigTest checks
The build Cache test pass on Wasi now. Fixes #5437
Diffstat (limited to 'lib/std/Build')
-rw-r--r--lib/std/Build/Cache.zig20
1 files changed, 0 insertions, 20 deletions
diff --git a/lib/std/Build/Cache.zig b/lib/std/Build/Cache.zig
index 24edee37a8..932ec00517 100644
--- a/lib/std/Build/Cache.zig
+++ b/lib/std/Build/Cache.zig
@@ -1254,11 +1254,6 @@ fn testGetCurrentFileTimestamp(dir: fs.Dir) !i128 {
}
test "cache file and then recall it" {
- if (builtin.os.tag == .wasi) {
- // https://github.com/ziglang/zig/issues/5437
- return error.SkipZigTest;
- }
-
var tmp = testing.tmpDir(.{});
defer tmp.cleanup();
@@ -1320,11 +1315,6 @@ test "cache file and then recall it" {
}
test "check that changing a file makes cache fail" {
- if (builtin.os.tag == .wasi) {
- // https://github.com/ziglang/zig/issues/5437
- return error.SkipZigTest;
- }
-
var tmp = testing.tmpDir(.{});
defer tmp.cleanup();
@@ -1394,11 +1384,6 @@ test "check that changing a file makes cache fail" {
}
test "no file inputs" {
- if (builtin.os.tag == .wasi) {
- // https://github.com/ziglang/zig/issues/5437
- return error.SkipZigTest;
- }
-
var tmp = testing.tmpDir(.{});
defer tmp.cleanup();
@@ -1442,11 +1427,6 @@ test "no file inputs" {
}
test "Manifest with files added after initial hash work" {
- if (builtin.os.tag == .wasi) {
- // https://github.com/ziglang/zig/issues/5437
- return error.SkipZigTest;
- }
-
var tmp = testing.tmpDir(.{});
defer tmp.cleanup();