Make tests public. Rewrite most tests. Add tests.
[pintos-anon] / src / tests / vm / pt-bad-addr.c
1 #include "tests/lib.h"
2 #include "tests/main.h"
3
4 void
5 test_main (void)
6 {
7   fail ("bad addr read as %d", *(int *) 0x04000000);
8 }