Hello.
I'm having problems testing my app using Xcode13 beta 5 and iOS15 simulators.
When I try to run the tests of a target that needs a host application on a iOS 15 simulator I get the following crash before the test starts:
Thread 1: EXC_BAD_ACCESS (code=EXC_I386_GPFLT)
dyld_sim`getpid:
0x10ccd7765 <+0>: pushq %rbp
0x10ccd7766 <+1>: movq %rsp, %rbp
0x10ccd7769 <+4>: leaq 0x38950(%rip), %rax ; gSyscallHelpers
0x10ccd7770 <+11>: movq (%rax), %rax
-> 0x10ccd7773 <+14>: cmpq $0x5, (%rax)
0x10ccd7777 <+18>: jb 0x10ccd7780 ; <+27>
0x10ccd7779 <+20>: popq %rbp
0x10ccd777a <+21>: jmpq *0x128(%rax)
0x10ccd7780 <+27>: callq 0x10ccd7fef ; findHostFunctions
0x10ccd7785 <+32>: popq %rbp
0x10ccd7786 <+33>: jmpq *0x38fa4(%rip) ; proc_getpid
If I run the tests with Fastlane, on the console it shows:
▸ Testing failed:
▸ MYAPPTests:
▸ MYAPP (66354) encountered an error (Test runner never began executing tests after launching.)
▸ ** TEST EXECUTE FAILED **
On targets that does not need a host application it works well.
And if try to run the same target with host application but on a iOS 14 simulator, it works fine.
So the problem seems to be the iOS15 simulator.
Any tips? Thank you!