blob: 9cd4edf5c66d3d429a5874937ee73270cb065238 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
/* Passes an invalid pointer to the open system call.
The process must be terminated with -1 exit code. */
#include <syscall.h>
#include "tests/lib.h"
#include "tests/main.h"
void
test_main (void)
{
msg ("open(0x20101234): %d", open ((char *) 0x20101234));
fail ("should have called exit(-1)");
}
|