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