Make tests public. Rewrite most tests. Add tests.
[pintos-anon] / src / tests / vm / child-inherit.c
1 #include <string.h>
2 #include "tests/vm/sample.inc"
3 #include "tests/lib.h"
4 #include "tests/main.h"
5
6 void
7 test_main (void)
8 {
9   memset ((char *) 0x54321000, 0, 4096);
10   fail ("child can modify parent's memory mappings");
11 }
12