diff options
| author | Jacob Young <jacobly0@users.noreply.github.com> | 2023-10-19 02:08:34 -0400 |
|---|---|---|
| committer | Jacob Young <jacobly0@users.noreply.github.com> | 2023-10-21 10:55:41 -0400 |
| commit | 2e6e39a7004dae626ad3088cbf1e652f157e6db8 (patch) | |
| tree | 5f166132424d3da5d6e372ce836f7dbdc2e75987 /lib/std/Build/Cache.zig | |
| parent | c880644d929ff8e403494ff7e6e347b4857db263 (diff) | |
| download | zig-2e6e39a7004dae626ad3088cbf1e652f157e6db8.tar.gz zig-2e6e39a7004dae626ad3088cbf1e652f157e6db8.zip | |
x86_64: fix bugs and disable erroring tests
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(); |
