Temporarily disable the JIT_IR unit test on Mac (not sure why it started crashing, OS upgrade?)

This commit is contained in:
Henrik Rydgård 2024-04-29 10:31:42 +02:00
parent 1786a4ddb0
commit 431a30b9c8
2 changed files with 3 additions and 1 deletions

View File

@ -197,8 +197,10 @@ bool TestJit() {
ir_speed = ExecCPUTest();
mipsr4k.UpdateCore(CPUCore::JIT);
jit_speed = ExecCPUTest();
#if !PPSSPP_PLATFORM(MAC)
mipsr4k.UpdateCore(CPUCore::JIT_IR);
jit_ir_speed = ExecCPUTest(false);
#endif
// Disassemble
JitBlockCacheDebugInterface *cache = MIPSComp::jit->GetBlockCacheDebugInterface();

View File

@ -1099,7 +1099,7 @@ int main(int argc, const char *argv[]) {
return 2;
}
} else if (testFunc == nullptr) {
fprintf(stderr, "You may select a test to run by passing an argument.\n");
fprintf(stderr, "You may select a test to run by passing an argument, either \"all\" or one or more of the below.\n");
fprintf(stderr, "\n");
fprintf(stderr, "Available tests:\n");
for (auto f : availableTests) {