diff options
author | Jose <jose@zeroc.com> | 2017-09-21 08:39:33 +0200 |
---|---|---|
committer | Jose <jose@zeroc.com> | 2017-09-21 08:53:26 +0200 |
commit | 57f774594e1ccfe549bcea8997d028b4ef5e2b14 (patch) | |
tree | de1a6b6f443299a0719b255a4b2e1b7b533c99c2 /scripts/Controller.py | |
parent | Fixed Ice/servantLocator test failures with browsers (diff) | |
download | ice-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-x | scripts/Controller.py | 2 |
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: |