00001 /* -*- c -*- */ 00002 00003 #include "tests/filesys/seq-test.h" 00004 #include "tests/main.h" 00005 00006 static char buf[TEST_SIZE]; 00007 00008 static size_t 00009 return_block_size (void) 00010 { 00011 return 1234; 00012 } 00013 00014 void 00015 test_main (void) 00016 { 00017 seq_test ("testme", 00018 buf, sizeof buf, 0, 00019 return_block_size, NULL); 00020 }