summaryrefslogtreecommitdiff
path: root/Tests/TestDriver/testArgs.h
blob: 04893660ba38939c3ea344e2ef3df4aba13c70e9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
void testProccessArgs(int* ac, char***av)
{
  char** argv = *av;
  if(*ac < 2)
    {
    return;
    }
  if(strcmp(argv[1], "--with-threads") == 0)
    {
    printf("number of threads is %s\n", argv[2]);
    *av +=2;
    *ac -=2;
    }
  else if (strcmp(argv[1], "--without-threads") == 0)
    {
    printf("no threads\n");
    *av += 1;
    *ac -= 1;
    }
}