* sim/cris: New directory with C and assembly tests for the CRIS
[external/binutils.git] / sim / testsuite / sim / cris / c / fcntl1.c
1 /* Check that we get the expected message for unsupported fcntl calls.
2 #notarget: cris*-*-elf
3 #xerror:
4 #output: Unimplemented fcntl*
5 #output: program stopped with signal 4.\n
6 */
7 #include <fcntl.h>
8 #include <stdio.h>
9 #include <stdlib.h>
10
11 int main (void)
12 {
13   fcntl (1, 42);
14   printf ("pass\n");
15   exit (0);
16 }