This repository has been archived on 2021-05-26. You can view files and clone it, but cannot push or open issues or pull requests.
OS/pintos-env/pintos/tests/filesys/extended/dir-under-file.c

13 lines
311 B
C
Executable file

/* Tries to create a directory with the same name as an existing
file, which must return failure. */
#include <syscall.h>
#include "tests/lib.h"
#include "tests/main.h"
void
test_main (void)
{
CHECK (create ("abc", 0), "create \"abc\"");
CHECK (!mkdir ("abc"), "mkdir \"abc\" (must return false)");
}