Johannes Plunien

Results 61 comments of Johannes Plunien

I just tried but cannot reproduce the issue, unfortunately. ``` $ xcodebuild -version Xcode 8.3.2 Build version 8E2002 $ sw_vers ProductName: Mac OS X ProductVersion: 10.12.4 BuildVersion: 16E195 $ brew...

Just looking at this error message it's hard to tell what exactly went wrong. Is it possible that you share the products generated by `xcodebuild ... build-for-testing`? I understand that...

It's really tough to help here without any further information. It is by the way not trying to find the PID of the simulator, it is trying to find the...

One possible root cause can be that your app is built for a higher deployment target than the Simulator you want to use. Example: When I try to run this...

It might also be a 32 Bit vs. 64 Bit Simulator issue. For example iPhone 5 is 32 Bit and iPhone 5s is 64 Bit. If the test target was...

@andrewcrawfordstv please check the logs here: `~/Library/Logs/CoreSimulator`

If your test target does not have a Host Application, then I have to disappoint you - this is not supported by `pxctest`.

> Simulator logs are too noisy and one of the error is I understand that there's a lot to digest when looking at these logs. But that's the best way...

It runs all test targets in parallel. You can limit that via `--only targetname`.

I think `xcrun simctl` is the easiest way to approach this. There's also [support](https://github.com/facebook/FBSimulatorControl/blob/5a6fe279a08245372383c69de1e50d0c91afd7d5/FBSimulatorControl/Strategies/FBUploadMediaStrategy.h) for that in `FBSimulatorControl` - so you could fork `pxctest` and add the functionality directly there....