| ... | ... | @@ -24,6 +24,11 @@ const ArenaAllocator = std.heap.ArenaAllocator; |
| 24 | 24 | test "chdir smoke test" { |
| 25 | 25 | if (native_os == .wasi) return error.SkipZigTest; |
| 26 | 26 | |
| 27 | if (true) { |
| 28 | // https://github.com/ziglang/zig/issues/14968 |
| 29 | return error.SkipZigTest; |
| 30 | } |
| 31 | |
| 27 | 32 | // Get current working directory path |
| 28 | 33 | var old_cwd_buf: [fs.MAX_PATH_BYTES]u8 = undefined; |
| 29 | 34 | const old_cwd = try os.getcwd(old_cwd_buf[0..]); |
| ... | ... | @@ -173,6 +178,10 @@ test "openat smoke test" { |
| 173 | 178 | test "symlink with relative paths" { |
| 174 | 179 | if (native_os == .wasi and builtin.link_libc) return error.SkipZigTest; |
| 175 | 180 | |
| 181 | if (true) { |
| 182 | // https://github.com/ziglang/zig/issues/14968 |
| 183 | return error.SkipZigTest; |
| 184 | } |
| 176 | 185 | const cwd = fs.cwd(); |
| 177 | 186 | cwd.deleteFile("file.txt") catch {}; |
| 178 | 187 | cwd.deleteFile("symlinked") catch {}; |
| ... | ... | @@ -228,6 +237,10 @@ test "link with relative paths" { |
| 228 | 237 | .wasi, .linux, .solaris => {}, |
| 229 | 238 | else => return error.SkipZigTest, |
| 230 | 239 | } |
| 240 | if (true) { |
| 241 | // https://github.com/ziglang/zig/issues/14968 |
| 242 | return error.SkipZigTest; |
| 243 | } |
| 231 | 244 | var cwd = fs.cwd(); |
| 232 | 245 | |
| 233 | 246 | cwd.deleteFile("example.txt") catch {}; |
| ... | ... | @@ -267,6 +280,10 @@ test "linkat with different directories" { |
| 267 | 280 | .wasi, .linux, .solaris => {}, |
| 268 | 281 | else => return error.SkipZigTest, |
| 269 | 282 | } |
| 283 | if (true) { |
| 284 | // https://github.com/ziglang/zig/issues/14968 |
| 285 | return error.SkipZigTest; |
| 286 | } |
| 270 | 287 | var cwd = fs.cwd(); |
| 271 | 288 | var tmp = tmpDir(.{}); |
| 272 | 289 | |