5f9cb61509da6c04867e7246342e95c3f918a69e
[pintos-anon] / src / tests / filesys / extended / dir-rm-root.c
1 /* Try to remove the root directory.
2    This must return failure. */
3
4 #include <syscall.h>
5 #include "tests/lib.h"
6 #include "tests/main.h"
7
8 void
9 test_main (void) 
10 {
11   CHECK (!remove ("/"), "remove \"/\" (must return false)");
12   CHECK (create ("/a", 243), "create \"/a\"");
13 }