Make tests public. Rewrite most tests. Add tests.
[pintos-anon] / src / tests / userprog / echo.c
diff --git a/src/tests/userprog/echo.c b/src/tests/userprog/echo.c
deleted file mode 100644 (file)
index c0ecd00..0000000
+++ /dev/null
@@ -1,13 +0,0 @@
-#include <stdio.h>
-
-int
-main (int argc, char **argv)
-{
-  int i;
-
-  for (i = 0; i < argc; i++)
-    printf ("%s ", argv[i]);
-  printf ("\n");
-
-  return 0;
-}