Get rid of unnecessary barrier. Improve comment.
[pintos-anon] / grading / filesys / grow-file-size.c
index b92ec5b2348537148ceec9e1df528dc5255634cb..cf36c178fb152c4dd10a8fe8cb88a4329e234ba9 100644 (file)
@@ -21,12 +21,10 @@ check_file_size (int fd, long ofs)
           ofs, size);
 }
 
-int
-main (void) 
+void
+test_main (void) 
 {
-  msg ("begin");
-  seq_test ("testfile", buf, sizeof buf, 0, 0,
+  seq_test ("testfile",
+            buf, sizeof buf, 0,
             return_block_size, check_file_size);
-  msg ("end");
-  return 0;
 }