| 84 | } |
| 85 | |
| 86 | static void TestEngineGetResult(dmEngine::HEngine engine, int* run_action, int* exit_code, int* argc, char*** argv) |
| 87 | { |
| 88 | dmEngineGetResult(engine, run_action, exit_code, argc, argv); |
| 89 | |
| 90 | g_ExitRequested = true; |
| 91 | g_ExitCode = *exit_code; |
| 92 | } |
| 93 | |
| 94 | static int Launch(int argc, char *argv[], PreRun pre_run, PostRun post_run, void* context) |
| 95 | { |
nothing calls this directly
no test coverage detected