Get rid of unnecessary barrier. Improve comment.
[pintos-anon] / grading / filesys / seq-block.inc
index e5424cd87be9ddab389f6aad6de2958ebe880407..9dc5d313e9864b77864ed340de01107599c2b6fe 100644 (file)
@@ -10,12 +10,10 @@ return_block_size (void)
   return BLOCK_SIZE;
 }
 
-int
-main (void) 
+void
+test_main (void) 
 {
-  msg ("begin");
-  seq_test ("noodle", buf, sizeof buf, sizeof buf, 4,
+  seq_test ("noodle",
+            buf, sizeof buf, sizeof buf,
             return_block_size, NULL);
-  msg ("end");
-  return 0;
 }