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