diff options
author | Benoit Foucher <benoit@zeroc.com> | 2017-01-13 17:57:32 +0100 |
---|---|---|
committer | Benoit Foucher <benoit@zeroc.com> | 2017-01-13 17:57:32 +0100 |
commit | b238f3e728439c3c35eaf660d646399cdc45cdee (patch) | |
tree | 8b85597367982847ed228cde0ba1ae3e294635bf /scripts/Util.py | |
parent | Fixed IceSSL/configuration iOS build failure (diff) | |
download | ice-b238f3e728439c3c35eaf660d646399cdc45cdee.tar.bz2 ice-b238f3e728439c3c35eaf660d646399cdc45cdee.tar.xz ice-b238f3e728439c3c35eaf660d646399cdc45cdee.zip |
Fixed ICE-7501 & ICE-7502 - Integrated the building of the controller Apps to the gmake build system, IceSSL test fix
Diffstat (limited to 'scripts/Util.py')
-rw-r--r-- | scripts/Util.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/Util.py b/scripts/Util.py index 6597314b5fd..2ac39209ac6 100644 --- a/scripts/Util.py +++ b/scripts/Util.py @@ -1872,7 +1872,7 @@ class iOSSimulatorProcessController(RemoteProcessController): device = "iOSSimulatorProcessController" deviceID = "com.apple.CoreSimulator.SimDeviceType.iPhone-6" runtimeID = "com.apple.CoreSimulator.SimRuntime.iOS-10-2" - appPath = "ios/controller/build/Products" + appPath = "ios/controller/build" def __init__(self, current): RemoteProcessController.__init__(self, current) @@ -1956,7 +1956,7 @@ class iOSSimulatorProcessController(RemoteProcessController): class iOSDeviceProcessController(RemoteProcessController): - appPath = "cpp/test/ios/controller/build/Products" + appPath = "cpp/test/ios/controller/build" def __init__(self, current): RemoteProcessController.__init__(self, current) |