Initial file system tests.
[pintos-anon] / grading / filesys / grow-seq.inc
1 /* -*- c -*- */
2
3 #include "fslib.h"
4
5 static char buf[TEST_SIZE];
6
7 static size_t
8 return_block_size (void) 
9 {
10   return 1234;
11 }
12
13 int
14 main (void) 
15 {
16   msg ("begin");
17   seq_test ("testme", buf, sizeof buf, 0, 3, return_block_size, NULL);
18   msg ("end");
19   return 0;
20 }