More filesys tests.
[pintos-anon] / grading / filesys / create.inc
1 /* -*- c -*- */
2
3 #include <stdio.h>
4 #include <syscall.h>
5 #include "fslib.h"
6
7 static char buf[TEST_SIZE];
8
9 void
10 test_main (void) 
11 {
12   check (create ("testfile", TEST_SIZE), "create testfile");
13   check_file ("testfile", buf, TEST_SIZE);
14 }