aboutsummaryrefslogtreecommitdiffstats
path: root/src/tests/vm/pt-bad-read.c
blob: ee791ffe79433a946b41276333950a6e3c33188f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/* Reads from a file into a bad address.
   The process must be terminated with -1 exit code. */

#include <syscall.h>
#include "tests/lib.h"
#include "tests/main.h"

void
test_main (void)
{
  int handle;

  CHECK ((handle = open ("sample.txt")) > 1, "open \"sample.txt\"");
  read (handle, (char *) &handle - 4096, 1);
  fail ("survived reading data into bad address");
}