blob: cdd2c62a27b30fcd4a647f679bb47c16caf3c584 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
/* Tries to create a file with the same name as an existing
directory, which must return failure. */
#include <syscall.h>
#include "tests/lib.h"
#include "tests/main.h"
void
test_main (void)
{
CHECK (mkdir ("abc"), "mkdir \"abc\"");
CHECK (!create ("abc", 0), "create \"abc\" (must return false)");
}
|