aboutsummaryrefslogtreecommitdiff
path: root/lib/std/Build/Cache.zig
diff options
context:
space:
mode:
authorJacob Young <jacobly0@users.noreply.github.com>2023-10-22 15:46:33 -0400
committerJacob Young <jacobly0@users.noreply.github.com>2023-10-22 15:46:43 -0400
commit27fe945a00956c8e727ca4c5409c6b716bc09a6d (patch)
treec9427aa9886e8d7f84c50f2ef12407cc80fa61d1 /lib/std/Build/Cache.zig
parent6f0198cadbe29294f2bf3153a27beebd64377566 (diff)
downloadzig-27fe945a00956c8e727ca4c5409c6b716bc09a6d.tar.gz
zig-27fe945a00956c8e727ca4c5409c6b716bc09a6d.zip
Revert "Revert "Merge pull request #17637 from jacobly0/x86_64-test-std""
This reverts commit 6f0198cadbe29294f2bf3153a27beebd64377566.
Diffstat (limited to 'lib/std/Build/Cache.zig')
-rw-r--r--lib/std/Build/Cache.zig10
1 files changed, 10 insertions, 0 deletions
diff --git a/lib/std/Build/Cache.zig b/lib/std/Build/Cache.zig
index b1ceaa1b09..5dcdeca079 100644
--- a/lib/std/Build/Cache.zig
+++ b/lib/std/Build/Cache.zig
@@ -1007,6 +1007,8 @@ test "cache file and then recall it" {
return error.SkipZigTest;
}
+ if (builtin.zig_backend == .stage2_x86_64) return error.SkipZigTest;
+
var tmp = testing.tmpDir(.{});
defer tmp.cleanup();
@@ -1072,6 +1074,9 @@ test "check that changing a file makes cache fail" {
// https://github.com/ziglang/zig/issues/5437
return error.SkipZigTest;
}
+
+ if (builtin.zig_backend == .stage2_x86_64) return error.SkipZigTest;
+
var tmp = testing.tmpDir(.{});
defer tmp.cleanup();
@@ -1146,6 +1151,8 @@ test "no file inputs" {
return error.SkipZigTest;
}
+ if (builtin.zig_backend == .stage2_x86_64) return error.SkipZigTest;
+
var tmp = testing.tmpDir(.{});
defer tmp.cleanup();
@@ -1193,6 +1200,9 @@ test "Manifest with files added after initial hash work" {
// https://github.com/ziglang/zig/issues/5437
return error.SkipZigTest;
}
+
+ if (builtin.zig_backend == .stage2_x86_64) return error.SkipZigTest;
+
var tmp = testing.tmpDir(.{});
defer tmp.cleanup();