mirror of
https://github.com/hrydgard/ppsspp.git
synced 2024-11-23 05:19:56 +00:00
Temporarily disable the JIT_IR unit test on Mac (not sure why it started crashing, OS upgrade?)
This commit is contained in:
parent
1786a4ddb0
commit
431a30b9c8
@ -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();
|
||||
|
@ -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) {
|
||||
|
Loading…
Reference in New Issue
Block a user