Make tests public. Rewrite most tests. Add tests.
[pintos-anon] / src / tests / filesys / seq-test.h
1 #ifndef TESTS_FILESYS_SEQ_TEST_H
2 #define TESTS_FILESYS_SEQ_TEST_H
3
4 #include <stddef.h>
5
6 void seq_test (const char *filename,
7                void *buf, size_t size, size_t initial_size,
8                size_t (*block_size_func) (void),
9                void (*check_func) (int fd, long ofs));
10
11 #endif /* tests/filesys/seq-test.h */