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