(port, logdir, test, prog, is_server)
| 146 | |
| 147 | |
| 148 | def exec_context(port, logdir, test, prog, is_server): |
| 149 | report = ExecReporter(logdir, test, prog) |
| 150 | prog.build_command(port) |
| 151 | return ExecutionContext(prog.command, prog.workdir, prog.env, prog.stop_signal, is_server, report) |
| 152 | |
| 153 | |
| 154 | def run_test(testdir, logdir, test_dict, max_retry, async_mode=True): |
no test coverage detected