Make tests public. Rewrite most tests. Add tests.
[pintos-anon] / src / tests / filesys / base / full.inc
1 /* -*- c -*- */
2
3 #include "tests/filesys/seq-test.h"
4 #include "tests/main.h"
5
6 static char buf[TEST_SIZE];
7
8 static size_t
9 return_test_size (void) 
10 {
11   return TEST_SIZE;
12 }
13
14 void
15 test_main (void) 
16 {
17   seq_test ("quux",
18             buf, sizeof buf, sizeof buf,
19             return_test_size, NULL);
20 }