diff --git a/src/xenia/cpu/ppc/testing/ppc_testing_main.cc b/src/xenia/cpu/ppc/testing/ppc_testing_main.cc index f2c5d701d..bd2652c20 100644 --- a/src/xenia/cpu/ppc/testing/ppc_testing_main.cc +++ b/src/xenia/cpu/ppc/testing/ppc_testing_main.cc @@ -435,9 +435,10 @@ bool RunTests(const std::wstring& test_name) { test_suites.push_back(std::move(test_suite)); } if (load_failed) { - return false; + XELOGE("One or more test suites failed to load."); } + XELOGI("%d tests loaded.", (int)test_suites.size()); TestRunner runner; for (auto& test_suite : test_suites) { XELOGI("%ls.s:", test_suite.name.c_str());