11 lines
184 B
C
11 lines
184 B
C
|
/* Tries to create a file with the empty string as its name. */
|
||
|
|
||
|
#include "tests/lib.h"
|
||
|
#include "tests/main.h"
|
||
|
|
||
|
void
|
||
|
test_main (void)
|
||
|
{
|
||
|
msg ("create(\"\"): %d", create ("", 0));
|
||
|
}
|