Make tests public. Rewrite most tests. Add tests.
[pintos-anon] / src / tests / userprog / exec-bad-ptr.c
1 #include <syscall.h>
2 #include "tests/main.h"
3
4 void
5 test_main (void) 
6 {
7   exec ((char *) 0x20101234);
8 }