diff options
author | Benoit Foucher <benoit@zeroc.com> | 2017-05-16 12:49:59 +0200 |
---|---|---|
committer | Benoit Foucher <benoit@zeroc.com> | 2017-05-16 12:49:59 +0200 |
commit | a210983046e13678215d68ac2c05bb9d9e2c129d (patch) | |
tree | 687213c96b28455bd03ecdb867d4880a54f75342 /scripts/Util.py | |
parent | Added build of sessionHelper test with C++11 (diff) | |
download | ice-a210983046e13678215d68ac2c05bb9d9e2c129d.tar.bz2 ice-a210983046e13678215d68ac2c05bb9d9e2c129d.tar.xz ice-a210983046e13678215d68ac2c05bb9d9e2c129d.zip |
Fixed ICE-7661 - added IceBridge/simple test, fixed IceBridge bugs
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 2155de818cb..3e8c2e66427 100644 --- a/scripts/Util.py +++ b/scripts/Util.py @@ -559,7 +559,7 @@ class Mapping: parent = re.match(r'^([\w]*).*', testcase.getTestSuite().getId()).group(1) if isinstance(testcase, ClientServerTestCase) and parent in ["Ice", "IceBox"]: options = current.driver.filterOptions(testcase, self.coreOptions) - elif parent in ["IceGrid", "Glacier2", "IceStorm", "IceDiscovery"]: + elif parent in ["IceGrid", "Glacier2", "IceStorm", "IceDiscovery", "IceBridge"]: options = current.driver.filterOptions(testcase, self.serviceOptions) return [c for c in gen(options)] |