aboutsummaryrefslogtreecommitdiffstats
path: root/src/tests/userprog/create-empty.c
blob: fa26b43e37bf791b81d92ca789d293fe8c8109e1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
/* 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));
}