Make tests public. Rewrite most tests. Add tests.
[pintos-anon] / src / tests / userprog / open-null.c
1 #include <stddef.h>
2 #include <syscall.h>
3 #include "tests/main.h"
4
5 void
6 test_main (void) 
7 {
8   open (NULL);
9 }