Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 0 additions & 20 deletions lib/std/Build/Cache.zig
Original file line number Diff line number Diff line change
Expand Up @@ -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();

Expand Down Expand Up @@ -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();

Expand Down Expand Up @@ -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();

Expand Down Expand Up @@ -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();

Expand Down
Loading