summaryrefslogtreecommitdiff
path: root/Tests/TestDriver/testArgs.h
blob: 0f1b879ec604d72d94bad98599c917a1a239bdf5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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;
  }
}