diff options
Diffstat (limited to 'src/cmd/tests/kernel/miscsyscall.c')
-rw-r--r-- | src/cmd/tests/kernel/miscsyscall.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/cmd/tests/kernel/miscsyscall.c b/src/cmd/tests/kernel/miscsyscall.c index 883fcee..c9daaf8 100644 --- a/src/cmd/tests/kernel/miscsyscall.c +++ b/src/cmd/tests/kernel/miscsyscall.c @@ -318,9 +318,9 @@ static void test_getnull(void) { test(_sys_fs_respond(h, buf, 16, 0) == -EBADF); /* 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); + test(_sys_open("/tmp/", 5, OPEN_READ) != -ENOENT); + test(_sys_mount(h, "/tmp/", 5) == 0); + test(_sys_open("/tmp/", 5, OPEN_READ) == -ENOENT); close(h); close(h2); |