Make tests public. Rewrite most tests. Add tests.
[pintos-anon] / grading / userprog / exec-bad-ptr.c
diff --git a/grading/userprog/exec-bad-ptr.c b/grading/userprog/exec-bad-ptr.c
deleted file mode 100644 (file)
index fce7adb..0000000
+++ /dev/null
@@ -1,11 +0,0 @@
-#include <stdio.h>
-#include <syscall.h>
-
-int
-main (void) 
-{
-  printf ("(exec-bad-ptr) begin\n");
-  exec ((char *) 0x20101234);
-  printf ("(exec-bad-ptr) end\n");
-  return 0;
-}