summaryrefslogtreecommitdiff
path: root/scripts/TestUtil.py
diff options
context:
space:
mode:
authorJose <jose@zeroc.com>2016-05-05 17:27:41 +0200
committerJose <jose@zeroc.com>2016-05-05 17:27:41 +0200
commitf6030ffdeb55aefe152a180155d26a8a1b279f1b (patch)
treef1821967d8578654fabfedd5462cc1f0d41921fa /scripts/TestUtil.py
parentAdd JavaScript to top level Makefile (diff)
downloadice-f6030ffdeb55aefe152a180155d26a8a1b279f1b.tar.bz2
ice-f6030ffdeb55aefe152a180155d26a8a1b279f1b.tar.xz
ice-f6030ffdeb55aefe152a180155d26a8a1b279f1b.zip
Do not build iceboxadmin with C++11
Diffstat (limited to 'scripts/TestUtil.py')
-rwxr-xr-xscripts/TestUtil.py9
1 files changed, 3 insertions, 6 deletions
diff --git a/scripts/TestUtil.py b/scripts/TestUtil.py
index 3a7823196aa..ad7533add6d 100755
--- a/scripts/TestUtil.py
+++ b/scripts/TestUtil.py
@@ -838,13 +838,10 @@ def getIceBox():
return iceBox
def getIceBoxAdmin():
-
- lang = getDefaultMapping()
- if lang == "java":
- iceBoxAdmin = "IceBox.Admin"
+ if getDefaultMapping() == "java":
+ return "IceBox.Admin"
else:
- iceBoxAdmin = string.replace(getIceBox(), "icebox", "iceboxadmin")
- return iceBoxAdmin
+ return getIceExe("iceboxadmin")
def getIceGridAdmin():
return getIceExe("icegridadmin")