blob: 973a8b1e9b3703db11aba83071d2d3f2c79bdfb4 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
/* 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)");
}
|