Skip to content

Commit 67959c5

Browse files
committed
Fix test_unistd_mkdir
1 parent 24a1a98 commit 67959c5

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

test/wasmfs/wasmfs_mkdir.c

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -66,11 +66,7 @@ int main() {
6666
// Try to make the root directory.
6767
errno = 0;
6868
mkdir("/", 0777);
69-
#ifdef WASMFS
7069
assert(errno == EEXIST);
71-
#else
72-
assert(errno == EINVAL);
73-
#endif
7470

7571
// Try to make a directory that exists already.
7672
errno = 0;

0 commit comments

Comments
 (0)