1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
/* Tries to read from an invalid fd,
which must either fail silently or terminate the process with
exit code -1. */
#include <limits.h>
#include <syscall.h>
#include "tests/lib.h"
#include "tests/main.h"
void
test_main (void)
{
char buf;
read (0x20101234, &buf, 1);
read (5, &buf, 1);
read (1234, &buf, 1);
read (-1, &buf, 1);
read (-1024, &buf, 1);
read (INT_MIN, &buf, 1);
read (INT_MAX, &buf, 1);
}
|