diff options
author | Jose <jose@zeroc.com> | 2019-01-16 23:25:20 +0100 |
---|---|---|
committer | Jose <jose@zeroc.com> | 2019-01-16 23:25:20 +0100 |
commit | a89c5bb00cbecdae110803299753fec6ccf988d9 (patch) | |
tree | 938e47fc7d3669f8b3b029fba935dceb61dbdb1d | |
parent | Fix UWP package names (diff) | |
download | ice-3.7.2-rc0.tar.bz2 ice-3.7.2-rc0.tar.xz ice-3.7.2-rc0.zip |
Minor clarifications to C++ test instructionsv3.7.2-rc0
-rw-r--r-- | cpp/README.md | 20 |
1 files changed, 16 insertions, 4 deletions
diff --git a/cpp/README.md b/cpp/README.md index 9da2e13edf6..cbc46591914 100644 --- a/cpp/README.md +++ b/cpp/README.md @@ -420,9 +420,13 @@ For the C++11 mapping, you need to specify a C++11 config: python allTests.py --config=cpp11-shared # cpp11-shared config with the default platform ``` -* Windows +* Windows C++11 debug builds ``` python allTests.py --config Cpp11-Debug +``` + +* Windows C++11 release builds +``` python allTests.py --config Cpp11-Release ``` @@ -448,18 +452,26 @@ C++98 Test Controller app or C++11 Test Controller app from Xcode: match the configuration(s) selected when building the test suite). #### iOS Simulator + - C++98 controller ``` python allTests.py --config=xcodesdk --platform=iphonesimulator --controller-app +``` + - C++11 controller +``` python allTests.py --config=cpp11-xcodesdk --platform=iphonesimulator --controller-app ``` #### iOS - Start the `C++98 Test Controller` or the `C++11 Test Controller` app on your iOS device, from Xcode. - - On your Mac: + + - Start the C++98 controller on your Mac: +``` +python allTests.py --config=xcodesdk --platform=iphoneos +``` + - Start the C++11 controller on your Mac: ``` -python3 allTests.py --config=xcodesdk --platform=iphoneos # C++98 controller -python3 allTests.py --config=cpp11-xcodesdk --platform=iphoneos # C++11 controller +python allTests.py --config=cpp11-xcodesdk --platform=iphoneos ``` All the test clients and servers run on the iOS device, not on your Mac computer. |