blob: 287cb23fe338c899eca63e2d7231d89469e02c99 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
/* Tries to create a file with the null pointer as its name.
The process must be terminated with exit code -1. */
#include "tests/lib.h"
#include "tests/main.h"
void
test_main (void)
{
msg ("create(NULL): %d", create (NULL, 0));
}
|