12 CHECK ((handle =
open (
"sample.txt")) > 1,
"open \"sample.txt\"");
14 read (handle, (
char *) 0xc0100000, 123);
15 fail (
"should not have survived read()");
int open(const char *file)
int read(int fd, void *buffer, unsigned size)
void fail(const char *format,...)
#define CHECK(SUCCESS,...)
Takes an expression to test for SUCCESS and a message, which may include printf-style arguments.
void test_main(void)
Passes an invalid pointer to the read system call.