# Linux * path_rename_file_trailing_slashes - trailing slash behavior of files is wrong: trailing slashes are ignored, should cause an error. * remove_directory_trailing_slashes - cap-std Dir::remove_dir gives EINVAL when trying to remove dir with trailing slash. otherwise, everything passes. # Windows * fd_readdir - DirEntry metadata ino panics on windows: https://github.com/bytecodealliance/cap-std/issues/142 * 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 * interesting_paths - on windows, opening a directory with a trailing slash fails. * path_rename_file_trailing_slashes - same incorrect behavior as linux * remove_directory_trailing_slashes - same incorrect behavior as linux