diff options
author | Bernard Normier <bernard@zeroc.com> | 2019-08-02 15:07:36 -0500 |
---|---|---|
committer | Bernard Normier <bernard@zeroc.com> | 2019-08-02 15:07:36 -0500 |
commit | 9e224d63e1afda849767492c30737a44ff971980 (patch) | |
tree | 3d3444cc55a994b685c6356caafd6e2a107ab14b /scripts/IceStormUtil.py | |
parent | C++/Swift Ice/exception cross testing failure - Close #468 (diff) | |
download | ice-9e224d63e1afda849767492c30737a44ff971980.tar.bz2 ice-9e224d63e1afda849767492c30737a44ff971980.tar.xz ice-9e224d63e1afda849767492c30737a44ff971980.zip |
Fixed ppc testing with bin
Diffstat (limited to 'scripts/IceStormUtil.py')
-rw-r--r-- | scripts/IceStormUtil.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/scripts/IceStormUtil.py b/scripts/IceStormUtil.py index 66750151e1b..7d397259858 100644 --- a/scripts/IceStormUtil.py +++ b/scripts/IceStormUtil.py @@ -22,6 +22,9 @@ class IceStorm(ProcessFromBinDir, Server): self.desc = self.instanceName if self.nreplicas == 0 else "{0} replica #{1}".format(self.instanceName, self.replica) + def getExe(self, current): + return self.exe + "_32" if current.config.buildPlatform == "ppc" else self.exe + def setup(self, current): # Create the database directory if self.createDb: |