Fix some console window behavior on Windows

This commit is contained in:
sfan5 2024-01-02 18:08:52 +01:00
parent 7c7ae79f9f
commit 8db4ba9e58
1 changed files with 3 additions and 0 deletions

View File

@ -213,6 +213,7 @@ int main(int argc, char *argv[])
// Run unit tests
if (cmd_args.getFlag("run-unittests")) {
porting::attachOrCreateConsole();
#if BUILD_UNITTESTS
if (cmd_args.exists("test-module"))
return run_tests(cmd_args.get("test-module")) ? 0 : 1;
@ -228,6 +229,7 @@ int main(int argc, char *argv[])
// Run benchmarks
if (cmd_args.getFlag("run-benchmarks")) {
porting::attachOrCreateConsole();
#if BUILD_BENCHMARKS
if (cmd_args.exists("test-module"))
return run_benchmarks(cmd_args.get("test-module").c_str()) ? 0 : 1;
@ -635,6 +637,7 @@ static bool use_debugger(int argc, char *argv[])
continue;
new_args.push_back(argv[i]);
}
new_args.push_back("--console");
new_args.push_back(nullptr);
#ifdef _WIN32