21 lines
519 B
C
21 lines
519 B
C
|
/* Try writing a file in the most normal way. */
|
||
|
|
||
|
#include <syscall.h>
|
||
|
#include "tests/userprog/sample.inc"
|
||
|
#include "tests/lib.h"
|
||
|
#include "tests/main.h"
|
||
|
|
||
|
void
|
||
|
test_main (void)
|
||
|
{
|
||
|
int handle, byte_cnt;
|
||
|
|
||
|
CHECK (create ("test.txt", sizeof sample - 1), "create \"test.txt\"");
|
||
|
CHECK ((handle = open ("test.txt")) > 1, "open \"test.txt\"");
|
||
|
|
||
|
byte_cnt = write (handle, sample, sizeof sample - 1);
|
||
|
if (byte_cnt != sizeof sample - 1)
|
||
|
fail ("write() returned %d instead of %zu", byte_cnt, sizeof sample - 1);
|
||
|
}
|
||
|
|