dirty fuckin' dangles boys

fuck you shorsey
This commit is contained in:
Pat Hickey
2021-01-28 13:01:37 -08:00
parent 11b8222033
commit 201a888d92
2 changed files with 14 additions and 15 deletions

View File

@@ -35,8 +35,5 @@
- same incorrect behavior as linux - same incorrect behavior as linux
* dangling_symlink
* path_rename_trailing_slashes
* remove_directory_trailing_slashes * remove_directory_trailing_slashes
* symlink_filestat * symlink_filestat
* symlink_loop

View File

@@ -1,20 +1,22 @@
use std::{env, process}; use std::{env, process};
use wasi_tests::{assert_errno, open_scratch_directory}; use wasi_tests::{assert_errno, open_scratch_directory, TESTCONFIG};
unsafe fn test_symlink_loop(dir_fd: wasi::Fd) { unsafe fn test_symlink_loop(dir_fd: wasi::Fd) {
// Create a self-referencing symlink. if TESTCONFIG.support_dangling_symlinks() {
wasi::path_symlink("symlink", dir_fd, "symlink").expect("creating a symlink"); // Create a self-referencing symlink.
wasi::path_symlink("symlink", dir_fd, "symlink").expect("creating a symlink");
// Try to open it. // Try to open it.
assert_errno!( assert_errno!(
wasi::path_open(dir_fd, 0, "symlink", 0, 0, 0, 0) wasi::path_open(dir_fd, 0, "symlink", 0, 0, 0, 0)
.expect_err("opening a self-referencing symlink") .expect_err("opening a self-referencing symlink")
.raw_error(), .raw_error(),
wasi::ERRNO_LOOP wasi::ERRNO_LOOP
); );
// Clean up. // Clean up.
wasi::path_unlink_file(dir_fd, "symlink").expect("removing a file"); wasi::path_unlink_file(dir_fd, "symlink").expect("removing a file");
}
} }
fn main() { fn main() {