]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blob - sim/testsuite/sim/cris/c/ugetrlimit1.c
This commit was manufactured by cvs2svn to create branch
[thirdparty/binutils-gdb.git] / sim / testsuite / sim / cris / c / ugetrlimit1.c
1 /* Check corner error case: specifying unimplemented resource.
2 #notarget: cris*-*-elf
3 */
4
5 #include <sys/time.h>
6 #include <sys/resource.h>
7 #include <unistd.h>
8 #include <stdio.h>
9 #include <errno.h>
10 #include <stdlib.h>
11
12 int main (void)
13 {
14 struct rlimit lim;
15
16 if (getrlimit (RLIMIT_NPROC, &lim) != -1
17 || errno != EINVAL)
18 abort ();
19 printf ("pass\n");
20 exit (0);
21 }