Consistently spell "file name" and "file system" as two words.
[pintos-anon] / src / tests / filesys / base / syn-remove.c
1 /* Verifies that a deleted file may still be written to and read
2    from. */
3
4 #include <random.h>
5 #include <string.h>
6 #include <syscall.h>
7 #include "tests/lib.h"
8 #include "tests/main.h"
9
10 char buf1[1234];
11 char buf2[1234];
12
13 void
14 test_main (void) 
15 {
16   const char *file_name = "deleteme";
17   int fd;
18   
19   CHECK (create (file_name, sizeof buf1), "create \"%s\"", file_name);
20   CHECK ((fd = open (file_name)) > 1, "open \"%s\"", file_name);
21   CHECK (remove (file_name), "remove \"%s\"", file_name);
22   random_bytes (buf1, sizeof buf1);
23   CHECK (write (fd, buf1, sizeof buf1) > 0, "write \"%s\"", file_name);
24   msg ("seek \"%s\" to 0", file_name);
25   seek (fd, 0);
26   CHECK (read (fd, buf2, sizeof buf2) > 0, "read \"%s\"", file_name);
27   compare_bytes (buf2, buf1, sizeof buf1, 0, file_name);
28   msg ("close \"%s\"", file_name);
29   close (fd);
30 }