| 1189 | } |
| 1190 | |
| 1191 | static int do_bisect_run(const char *command) |
| 1192 | { |
| 1193 | struct child_process cmd = CHILD_PROCESS_INIT; |
| 1194 | |
| 1195 | printf(_("running %s\n"), command); |
| 1196 | cmd.use_shell = 1; |
| 1197 | strvec_push(&cmd.args, command); |
| 1198 | return run_command(&cmd); |
| 1199 | } |
| 1200 | |
| 1201 | static int verify_good(const struct bisect_terms *terms, const char *command) |
| 1202 | { |
no test coverage detected