Home | History | Annotate | Download | only in unittest

Lines Matching defs:cur_arg

135     char *cur_arg = argv[id];
136 if (!strcmp(cur_arg, "benchmark")) {
142 } else if (!strcmp(cur_arg, "demo")) {
148 } else if (!strncmp(cur_arg, "shuffle", 7)) {
149 if (strlen(cur_arg) == 7) {
153 CHECK(cur_arg[7] == '=');
154 shuffle_seed = ParseInt(cur_arg + 8);
157 if (isdigit(cur_arg[0])) {
159 int test_id = ParseInt(cur_arg);
165 } else if (cur_arg[0] == '-') {
167 int test_id = ParseInt(cur_arg + 1);
174 printf("Unknown argument: %s\n", cur_arg);