diff options
author | dzwdz | 2024-05-11 20:55:10 +0200 |
---|---|---|
committer | dzwdz | 2024-05-11 20:55:10 +0200 |
commit | ec3d2400db15e6911138d88f95cae141a9da2130 (patch) | |
tree | 243ae2e52a428529bb050caaed332185c465a7d5 /src/cmd/tests/kernel/miscsyscall.c | |
parent | e4ebea27b2f339706da76a3e79cb63ea9ed97c38 (diff) |
kernel: remove HANDLE_NULLFS
It was a dumb hack that wasn't even necessary - an error when mounting should
shadow over the mountpoint anyways.
Diffstat (limited to 'src/cmd/tests/kernel/miscsyscall.c')
-rw-r--r-- | src/cmd/tests/kernel/miscsyscall.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/cmd/tests/kernel/miscsyscall.c b/src/cmd/tests/kernel/miscsyscall.c index c7ce9e0..1317720 100644 --- a/src/cmd/tests/kernel/miscsyscall.c +++ b/src/cmd/tests/kernel/miscsyscall.c @@ -316,7 +316,11 @@ static void test_getnull(void) { test(_sys_getsize(h) == -ENOSYS); test(_sys_remove(h) == -ENOSYS); test(_sys_fs_respond(h, buf, 16, 0) == -EBADF); - test(_sys_mount(h, "/asdf", 5) == -EGENERIC); + + /* making some assumptions about the testing environment here... */ + test(_sys_open("/test", 5, OPEN_READ) != -EGENERIC); + test(_sys_mount(h, "/test", 5) == 0); + test(_sys_open("/test", 5, OPEN_READ) == -EGENERIC); close(h); close(h2); |