Make tests public. Rewrite most tests. Add tests.
[pintos-anon] / src / tests / userprog / write-normal.c
1 #include <syscall.h>
2 #include "tests/userprog/sample.inc"
3 #include "tests/lib.h"
4 #include "tests/main.h"
5
6 void
7 test_main (void) 
8 {
9   int handle, byte_cnt;
10
11   CHECK (create ("test.txt", sizeof sample - 1), "create \"test.txt\"");
12   CHECK ((handle = open ("test.txt")) > 1, "open \"test.txt\"");
13
14   byte_cnt = write (handle, sample, sizeof sample - 1);
15   if (byte_cnt != sizeof sample - 1)
16     fail ("write() returned %d instead of %zu", byte_cnt, sizeof sample - 1);
17 }
18