Decide whether or not the current function needs to be benchmarked */
| 1145 | |
| 1146 | /* Decide whether or not the current function needs to be benchmarked */ |
| 1147 | int checkasm_bench_func(void) |
| 1148 | { |
| 1149 | return !state.num_failed && state.bench_pattern && |
| 1150 | !wildstrcmp(state.current_func->name, state.bench_pattern); |
| 1151 | } |
| 1152 | |
| 1153 | /* Indicate that the current test has failed, return whether verbose printing |
| 1154 | * is requested. */ |
nothing calls this directly
no test coverage detected