This commit is contained in:
Pat Hickey
2021-01-28 13:20:52 -08:00
parent 201a888d92
commit 1d057af64d
2 changed files with 9 additions and 13 deletions

View File

@@ -14,18 +14,18 @@
* fd_readdir
- DirEntry metadata ino panics on windows: https://github.com/bytecodealliance/cap-std/issues/142
* nofollow_errors
- I loosened up some errno acceptance but windows requires rmdir to delete
a symlink to a directory, rather than unlink_file
- fix merged in next cap-std release
* symlink_create
- narrowed down the symlink delete issue that only shows up on linux
- dan is doing the upstream fix rn
* fd_flags_set
- same metadata panic as fd_readdir
* path_filestat
- same metadata panic as fd_readdir
* symlink_filestat
- same metadata panic as fd_readdir
* nofollow_errors
- fix merged; in next cap-std release
* symlink_create
- dan is doing the upstream fix rn (dirext will have method to delete file or symlink)
* path_rename
- somehow, windows lets us rename an empty directory to an existing empty file??? line 76.
## "Trailing slashes are a bonified boondoggle" - Dan
@@ -33,7 +33,5 @@
- on windows, opening a directory with a trailing slash fails.
* path_rename_file_trailing_slashes
- same incorrect behavior as linux
* remove_directory_trailing_slashes
* symlink_filestat
- same incorrect behavior as linux

View File

@@ -62,8 +62,6 @@ unsafe fn create_symlink_to_directory(dir_fd: wasi::Fd) {
// Replace the target directory with a file.
wasi::path_unlink_file(dir_fd, "symlink").expect("remove symlink to directory");
// FIXME: use the line below instead of the line above, and this test passes on windows!
//wasi::path_remove_directory(dir_fd, "symlink").expect("remove symlink to directory");
wasi::path_remove_directory(dir_fd, "target")
.expect("remove_directory on a directory should succeed");
}