diff options
author | Benoit Foucher <benoit@zeroc.com> | 2018-05-26 14:51:10 +0200 |
---|---|---|
committer | Benoit Foucher <benoit@zeroc.com> | 2018-05-26 14:51:10 +0200 |
commit | 67d75b52476f0cbccdd1a182be8af7dcfe78e355 (patch) | |
tree | 5ebfab1788fc03f6dc81dbe6ca81e4c525f23207 /scripts/IcePatch2Util.py | |
parent | Added support for stripping out invalid XML characters from the JUnit XML fil... (diff) | |
download | ice-67d75b52476f0cbccdd1a182be8af7dcfe78e355.tar.bz2 ice-67d75b52476f0cbccdd1a182be8af7dcfe78e355.tar.xz ice-67d75b52476f0cbccdd1a182be8af7dcfe78e355.zip |
Support for components in test script
Diffstat (limited to 'scripts/IcePatch2Util.py')
-rw-r--r-- | scripts/IcePatch2Util.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/scripts/IcePatch2Util.py b/scripts/IcePatch2Util.py index 84c842e0eb5..5102793e42f 100644 --- a/scripts/IcePatch2Util.py +++ b/scripts/IcePatch2Util.py @@ -9,17 +9,17 @@ from Util import * -class IcePatch2Calc(ProcessFromBinDir, Process): +class IcePatch2Calc(ProcessFromBinDir, ProcessIsReleaseOnly, Process): def __init__(self, *args, **kargs): Process.__init__(self, exe="icepatch2calc", mapping=Mapping.getByName("cpp"), *args, **kargs) -class IcePatch2Client(ProcessFromBinDir, Process): +class IcePatch2Client(ProcessFromBinDir, ProcessIsReleaseOnly, Process): def __init__(self, *args, **kargs): Process.__init__(self, exe="icepatch2client", mapping=Mapping.getByName("cpp"), *args, **kargs) -class IcePatch2Server(ProcessFromBinDir, Process): +class IcePatch2Server(ProcessFromBinDir, ProcessIsReleaseOnly, Process): def __init__(self, *args, **kargs): Process.__init__(self, exe="icepatch2server", mapping=Mapping.getByName("cpp"), *args, **kargs) |