Make tests public. Rewrite most tests. Add tests.
[pintos-anon] / grading / filesys / create.inc
diff --git a/grading/filesys/create.inc b/grading/filesys/create.inc
deleted file mode 100644 (file)
index 71b52fb..0000000
+++ /dev/null
@@ -1,15 +0,0 @@
-/* -*- c -*- */
-
-#include <stdio.h>
-#include <syscall.h>
-#include "fslib.h"
-
-static char buf[TEST_SIZE];
-
-void
-test_main (void) 
-{
-  const char *filename = "blargle";
-  CHECK (create (filename, TEST_SIZE), "create \"%s\"", filename);
-  check_file (filename, buf, TEST_SIZE);
-}