| author | |
| committer | |
| log | 8ec990d6d71174fbc3961fa11d4a74d6ec81f58a |
| tree | 10aef65b22be3fa388c9193fc831fd480692a7f5 |
| parent | 8cc35a0255cae7728cfadfbe625986dc7c509def |
When this test is enabled something like:
`zig build test docs --zig-lib-dir .\lib\ -Dstatic-llvm -Dskip-non-native -Denable-symlinks-windows`
never finishes.
Those are failed runs from ci:
https://github.com/ziglang/zig/actions/runs/8137710393
https://github.com/ziglang/zig/actions/runs/8129619923
https://github.com/ziglang/zig/actions/runs/8125845128
Isolating that test and running it is not a problem. Running something
like `zig test .\lib\std\std.zig --zig-lib-dir .\lib\` is fine.1 files changed, 5 insertions(+), 0 deletions(-)
lib/std/tar.zig+5| ... | @@ -896,6 +896,11 @@ test "header parse mode" { | ... | @@ -896,6 +896,11 @@ test "header parse mode" { |
| 896 | } | 896 | } |
| 897 | 897 | ||
| 898 | test "create file and symlink" { | 898 | test "create file and symlink" { |
| 899 | // With test enabled this is hanging under windows: | ||
| 900 | // zig build test docs --zig-lib-dir .\lib\ -Dstatic-llvm -Dskip-non-native -Denable-symlinks-windows | ||
| 901 | const builtin = @import("builtin"); | ||
| 902 | if (builtin.os.tag == .windows) return error.SkipZigTest; | ||
| 903 | |||
| 899 | var root = std.testing.tmpDir(.{}); | 904 | var root = std.testing.tmpDir(.{}); |
| 900 | defer root.cleanup(); | 905 | defer root.cleanup(); |
| 901 | 906 |