diff options
author | Jason Wray <jason@mapbox.com> | 2019-06-17 16:12:13 -0700 |
---|---|---|
committer | Jason Wray <friedbunny@users.noreply.github.com> | 2019-06-18 17:45:28 -0700 |
commit | bd481b1d60132c1b7f8ab1ebd8e363802907f9d5 (patch) | |
tree | 0c64d8a8654684502bfdc52eb1298845d1daf3dc /platform/ios | |
parent | 962793becaec79dd94d5bd56e7ef0e462ba57ffc (diff) | |
download | qtlocation-mapboxgl-bd481b1d60132c1b7f8ab1ebd8e363802907f9d5.tar.gz |
[ios, build] Add more specific iOS testing flags
Diffstat (limited to 'platform/ios')
-rw-r--r-- | platform/ios/DEVELOPING.md | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/platform/ios/DEVELOPING.md b/platform/ios/DEVELOPING.md index 88583b2502..eb0c705c29 100644 --- a/platform/ios/DEVELOPING.md +++ b/platform/ios/DEVELOPING.md @@ -153,7 +153,11 @@ You can provide an optional and custom [`xcconfig`](https://help.apple.com/xcode * `make ios-sanitize-address` runs unit tests from the "CI" scheme with the Address Sanitizer enabled. * `make ios-static-analyzer` runs unit tests from the "CI" scheme with the Static Analyzer enabled. -These commands are run by default on a single Simulator. To enable legacy iOS versions and more device types, add `MORE_SIMULATORS=1`. +These commands are run by default on a single Simulator. To enable legacy iOS versions and more device types, add `MORE_SIMULATORS=YES`. Use `IOS_LATEST=YES`, `IOS_11=YES`, etc. to test on specific iOS versions. + +To only run a specific test or class of tests, add `ONLY_TESTING=test/MGLNameOfTestClass/testNameOfTest`. + +To skip a specific test or class of tests, add `SKIP_TESTING=test/MGLNameOfTestClass/testNameOfTest`. To run the cross-platform tests in Xcode instead of on the command line: |