43bc5e6489d6cd072caea8bf2ab975dd860a9f56
[pintos-anon] / src / tests / filesys / extended / dir-empty-name.c
1 /* Tries to create a directory named as the empty string,
2    which 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 (!create ("", 0), "create \"\" (must return false)");
12 }