Add file system persistence tests:
[pintos-anon] / src / tests / filesys / extended / dir-rm-root.c
index 5f9cb61509da6c04867e7246342e95c3f918a69e..c47f1eb7b47f6c135c80291a1ec5ebee4e7fd52f 100644 (file)
@@ -1,5 +1,5 @@
 /* Try to remove the root directory.
-   This must return failure. */
+   This must fail. */
 
 #include <syscall.h>
 #include "tests/lib.h"
@@ -8,6 +8,6 @@
 void
 test_main (void) 
 {
-  CHECK (!remove ("/"), "remove \"/\" (must return false)");
+  CHECK (!remove ("/"), "remove \"/\" (must fail)");
   CHECK (create ("/a", 243), "create \"/a\"");
 }