summaryrefslogtreecommitdiff
path: root/posix/tst-cpucount.c
blob: fe3cded732bc3c5b5f10cb81e1a83dff098cd2f9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
#include <sched.h>
#include <stdio.h>

static int
do_test (void)
{
  cpu_set_t c;

  CPU_ZERO (&c);

  for (int cnt = 0; cnt < 130; ++cnt)
    {
      int n = CPU_COUNT (&c);
      if (n != cnt)
	{
	  printf ("expected %d, not %d\n", cnt, n);
	  return 1;
	}

      CPU_SET (cnt, &c);
    }

  return 0;
}

#define TEST_FUNCTION do_test ()
#include "../test-skeleton.c"