summaryrefslogtreecommitdiff
path: root/src/cmd/tests/kernel
diff options
context:
space:
mode:
Diffstat (limited to 'src/cmd/tests/kernel')
-rw-r--r--src/cmd/tests/kernel/miscsyscall.c6
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);