Make tests public. Rewrite most tests. Add tests.
[pintos-anon] / grading / filesys / grow-tell.c
diff --git a/grading/filesys/grow-tell.c b/grading/filesys/grow-tell.c
deleted file mode 100644 (file)
index 672786a..0000000
+++ /dev/null
@@ -1,30 +0,0 @@
-/* -*- c -*- */
-
-#include <syscall.h>
-#include "fslib.h"
-
-const char test_name[] = "grow-tell";
-static char buf[2134];
-
-static size_t
-return_block_size (void) 
-{
-  return 37;
-}
-
-static void
-check_tell (int fd, long ofs) 
-{
-  long pos = tell (fd);
-  if (pos != ofs)
-    fail ("file position not updated properly: should be %ld, actually %ld",
-          ofs, pos);
-}
-
-void
-test_main (void) 
-{
-  seq_test ("foobar",
-            buf, sizeof buf, 0,
-            return_block_size, check_tell);
-}