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/Util.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/Util.py')
-rw-r--r-- | scripts/Util.py | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/scripts/Util.py b/scripts/Util.py index 2ec519657d9..fe79b115b81 100644 --- a/scripts/Util.py +++ b/scripts/Util.py @@ -1404,9 +1404,6 @@ class ProcessFromBinDir: def isFromBinDir(self): return True - def getExe(self, current): - return self.exe + "_32" if current.config.buildPlatform == "ppc" else self.exe - # # Executables for processes inheriting this marker class are only provided # as a Release executble on Windows @@ -1416,7 +1413,6 @@ class ProcessIsReleaseOnly: def isReleaseOnly(self): return True - class SliceTranslator(ProcessFromBinDir, ProcessIsReleaseOnly, SimpleClient): def __init__(self, translator): |