We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 39428ce commit 7cd0603Copy full SHA for 7cd0603
test/wasmfs/wasmfs_open.c
@@ -89,11 +89,7 @@ int main() {
89
int fd5 = open("/dev/stdout/foo", O_RDWR);
90
printf("Errno: %s\n", strerror(errno));
91
// Both errors are valid, but in WasmFS, ENOTDIR is returned first.
92
-#ifdef WASMFS
93
assert(errno == ENOTDIR);
94
-#else
95
- assert(errno == ENOENT);
96
-#endif
97
98
errno = 0;
99
// Attempt to open and write to the root directory.
0 commit comments