Rev 3174 | Rev 3535 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed
Rev 3174 | Rev 3448 | ||
---|---|---|---|
Line 131... | Line 131... | ||
131 | if ((c >= 'a') && (c <= 'z')) { |
131 | if ((c >= 'a') && (c <= 'z')) { |
132 | for (test = tests; test->name != NULL; test++, c--) |
132 | for (test = tests; test->name != NULL; test++, c--) |
133 | if (c == 'a') |
133 | if (c == 'a') |
134 | break; |
134 | break; |
135 | 135 | ||
136 | if (c > 'a') |
136 | if (test->name == NULL) |
137 | printf("Unknown test\n\n"); |
137 | printf("Unknown test\n\n"); |
138 | else |
138 | else |
139 | run_test(test); |
139 | run_test(test); |
140 | } else if (c == '*') { |
140 | } else if (c == '*') { |
141 | run_safe_tests(); |
141 | run_safe_tests(); |