diff options
| author | Jacob Young <jacobly0@users.noreply.github.com> | 2023-10-22 15:46:33 -0400 |
|---|---|---|
| committer | Jacob Young <jacobly0@users.noreply.github.com> | 2023-10-22 15:46:43 -0400 |
| commit | 27fe945a00956c8e727ca4c5409c6b716bc09a6d (patch) | |
| tree | c9427aa9886e8d7f84c50f2ef12407cc80fa61d1 /lib/std/Build/Cache.zig | |
| parent | 6f0198cadbe29294f2bf3153a27beebd64377566 (diff) | |
| download | zig-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.zig | 10 |
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(); |
