diff options
author | Jose <jose@zeroc.com> | 2016-11-30 11:10:10 +0100 |
---|---|---|
committer | Jose <jose@zeroc.com> | 2016-11-30 11:10:10 +0100 |
commit | 61a7d9b651a89391339ae1aa7f88de8757bfe728 (patch) | |
tree | fd806011f962e7dc40ef327a396cc0546d4238d5 /scripts/IcePatch2Util.py | |
parent | Use bzip2 from zeroc.ice.net Nuget package with binary dist testing (diff) | |
download | ice-61a7d9b651a89391339ae1aa7f88de8757bfe728.tar.bz2 ice-61a7d9b651a89391339ae1aa7f88de8757bfe728.tar.xz ice-61a7d9b651a89391339ae1aa7f88de8757bfe728.zip |
Fixes to run IceGrid test with Windows bindist in debug mode
Diffstat (limited to 'scripts/IcePatch2Util.py')
-rw-r--r-- | scripts/IcePatch2Util.py | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/scripts/IcePatch2Util.py b/scripts/IcePatch2Util.py index 1a7fda7ca83..8847e681a43 100644 --- a/scripts/IcePatch2Util.py +++ b/scripts/IcePatch2Util.py @@ -13,3 +13,13 @@ class IcePatch2Calc(ProcessFromBinDir, Process): def __init__(self, *args, **kargs): Process.__init__(self, exe="icepatch2calc", mapping=Mapping.getByName("cpp"), *args, **kargs) + +class IcePatch2Client(ProcessFromBinDir, Process): + + def __init__(self, *args, **kargs): + Process.__init__(self, exe="icepatch2client", mapping=Mapping.getByName("cpp"), *args, **kargs) + +class IcePatch2Server(ProcessFromBinDir, Process): + + def __init__(self, *args, **kargs): + Process.__init__(self, exe="icepatch2server", mapping=Mapping.getByName("cpp"), *args, **kargs) |