diff options
author | Benoit Foucher <benoit@zeroc.com> | 2019-09-18 17:59:04 +0200 |
---|---|---|
committer | Benoit Foucher <benoit@zeroc.com> | 2019-09-18 17:59:19 +0200 |
commit | 2cbb57508e86a1c62956cc58f6caa5296d53af2d (patch) | |
tree | 0154a33816face188fd6aaf14042c576d69df4f8 /scripts/Util.py | |
parent | Fixed file permissions (diff) | |
download | ice-2cbb57508e86a1c62956cc58f6caa5296d53af2d.tar.bz2 ice-2cbb57508e86a1c62956cc58f6caa5296d53af2d.tar.xz ice-2cbb57508e86a1c62956cc58f6caa5296d53af2d.zip |
Print simulator iOS version with ./allTests.py debug output, fixes #532
Diffstat (limited to 'scripts/Util.py')
-rw-r--r-- | scripts/Util.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/Util.py b/scripts/Util.py index 8bd88cdf40b..c06cdffb105 100644 --- a/scripts/Util.py +++ b/scripts/Util.py @@ -2460,7 +2460,7 @@ class iOSSimulatorProcessController(RemoteProcessController): self.runtimeID = "com.apple.CoreSimulator.SimRuntime.iOS-12-0" # Default value def __str__(self): - return "iOS Simulator" + return "iOS Simulator ({})".format(self.runtimeID.replace("com.apple.CoreSimulator.SimRuntime.", "").strip()) def getControllerIdentity(self, current): return current.testcase.getMapping().getIOSControllerIdentity(current) |