1/* Check corner error case: specifying invalid scheduling policy.
2#progos: linux
3*/
4
5#include <sched.h>
6#include <stdio.h>
7#include <errno.h>
8#include <stdlib.h>
9
10int main (void)
11{
12  if (sched_get_priority_min (-1) != -1
13      || errno != EINVAL)
14    abort ();
15
16  errno = 0;
17
18  if (sched_get_priority_max (-1) != -1
19      || errno != EINVAL)
20    abort ();
21
22  printf ("pass\n");
23  exit (0);
24}
25