Skip to content

Commit

Permalink
fix crash on shutdown
Browse files Browse the repository at this point in the history
  • Loading branch information
RevoluPowered committed Jul 24, 2020
1 parent 2bdbdc4 commit a55b10a
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions main/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -397,16 +397,17 @@ void Main::print_help(const char *p_binary) {

int Main::test_entrypoint(int argc, char *argv[], bool &tests_need_run) {
#ifdef TOOLS_ENABLED // templates can't run unit test tool
OS::get_singleton()->initialize();
StringName::setup();
for (int x = 0; x < argc; x++) {
if (strncmp(argv[x], "--test", 6) == 0) {
tests_need_run = true;
return test_main(argc, argv);
OS::get_singleton()->initialize();
StringName::setup();
int status = test_main(argc, argv);
StringName::cleanup();
// TODO: fix OS::singleton cleanup
return status;
}
}
StringName::cleanup();
OS::get_singleton()->finalize();
#endif
tests_need_run = false;
return 0;
Expand Down

0 comments on commit a55b10a

Please sign in to comment.