Skip to content

Commit

Permalink
engine: host: oops
Browse files Browse the repository at this point in the history
  • Loading branch information
a1batross committed Apr 18, 2024
1 parent 87ac217 commit ca3b4a9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion engine/common/host.c
Original file line number Diff line number Diff line change
Expand Up @@ -941,7 +941,7 @@ static void Host_RunTests( int stage )
TEST_LIST_1_CLIENT;
#endif
Msg( "Done! %d passed, %d failed\n", tests_stats.passed, tests_stats.failed );
error_on_exit = tests_stats.failed >= 0 ? EXIT_FAILURE : EXIT_SUCCESS;
error_on_exit = tests_stats.failed > 0 ? EXIT_FAILURE : EXIT_SUCCESS;
Sys_Quit();
}
}
Expand Down

0 comments on commit ca3b4a9

Please sign in to comment.