Lines Matching refs:test
87 static int process_test_option(struct testgroup_t *groups, const char *test);
414 process_test_alias(struct testgroup_t *groups, const char *test) argument
418 if (!strcmp(cfg_aliases[i].name, test)) {
429 printf("No such test alias as @%s!",test);
434 process_test_option(struct testgroup_t *groups, const char *test) argument
438 if (test[0] == '@') {
439 return process_test_alias(groups, test + 1);
440 } else if (test[0] == ':') {
441 ++test;
443 } else if (test[0] == '+') {
444 ++test;
446 if (!tinytest_set_flag_(groups, test, 0, TT_OFF_BY_DEFAULT)) {
447 printf("No such test as %s!\n", test);
453 if (!tinytest_set_flag_(groups, test, 1, flag)) {
454 printf("No such test as %s!\n", test);