Home | History | Annotate | Download | only in unittest

Lines Matching refs:test_id

70     int test_id = tests_to_run[i];
71 if (tests_to_exclude.count(test_id) > 0) {
72 printf("test%i was excluded\n", test_id);
74 (*TheMapOfTests)[test_id].Run();
159 int test_id = ParseInt(cur_arg);
160 if (!TheMapOfTests->count(test_id)) {
161 printf("Unknown test id: %d\n", test_id);
164 tests_to_run.push_back(test_id);
167 int test_id = ParseInt(cur_arg + 1);
168 if (!TheMapOfTests->count(test_id)) {
169 printf("Unknown test id: %d\n", test_id);
172 tests_to_exclude.insert(test_id);