summaryrefslogtreecommitdiff
path: root/scripts/Controller.py
diff options
context:
space:
mode:
authorJose <jose@zeroc.com>2017-09-21 08:39:33 +0200
committerJose <jose@zeroc.com>2017-09-21 08:53:26 +0200
commit57f774594e1ccfe549bcea8997d028b4ef5e2b14 (patch)
treede1a6b6f443299a0719b255a4b2e1b7b533c99c2 /scripts/Controller.py
parentFixed Ice/servantLocator test failures with browsers (diff)
downloadice-57f774594e1ccfe549bcea8997d028b4ef5e2b14.tar.bz2
ice-57f774594e1ccfe549bcea8997d028b4ef5e2b14.tar.xz
ice-57f774594e1ccfe549bcea8997d028b4ef5e2b14.zip
Fix Windows C++ compiler detection in test scripts
Visual Studio 2017 15.3.5 comes with VC++ 19.11 our script only handle up to VC++ 19.10. Fixed the code to handle this version and throw a proper exception if a unknown version is present
Diffstat (limited to 'scripts/Controller.py')
-rwxr-xr-xscripts/Controller.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/Controller.py b/scripts/Controller.py
index aa5ab422855..942845fe245 100755
--- a/scripts/Controller.py
+++ b/scripts/Controller.py
@@ -95,7 +95,7 @@ class ControllerDriver(Driver):
return self.current.serverTestCase._startServerSide(self.current)
except Exception as ex:
self.serverSideRunning = False
- raise Test.Common.TestCaseFailedException(self.current.result.getOutput() + "\n" + str(ex))
+ raise Test.Common.TestCaseFailedException(self.current.result.getOutput() + "\n" + traceback.format_exc())
def stopServerSide(self, success, c):
if self.serverSideRunning: