summaryrefslogtreecommitdiff
path: root/sim/testsuite/sim/cris/c/fcntl1.c
blob: e180841645acdabcfe79196b514bb28f8be149e2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/* Check that we get the expected message for unsupported fcntl calls.
#notarget: cris*-*-elf
#xerror:
#output: Unimplemented fcntl*
#output: program stopped with signal 4.\n
*/
#include <fcntl.h>
#include <stdio.h>
#include <stdlib.h>

int main (void)
{
  fcntl (1, 42);
  printf ("pass\n");
  exit (0);
}