summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xcpp/allTests.py2
-rw-r--r--cpp/config/Make.rules2
-rwxr-xr-xscripts/TestUtil.py9
3 files changed, 5 insertions, 8 deletions
diff --git a/cpp/allTests.py b/cpp/allTests.py
index 49ca349425e..023e8ab6c6d 100755
--- a/cpp/allTests.py
+++ b/cpp/allTests.py
@@ -81,7 +81,7 @@ tests = [
("Ice/services", ["once", "nomingw"]),
("IceSSL/configuration", ["once", "novalgrind"]), # valgrind doesn't work well with openssl
("IceBox/configuration", ["core", "noipv6", "novc100", "nomingw", "nomx"]),
- ("IceBox/admin", ["core", "noipv6", "novc100", "nomingw", "nomx"]),
+ ("IceBox/admin", ["core", "noipv6", "novc100", "nomingw", "nomx", "noc++11"]),
("IceStorm/single", ["service", "novc100", "noappverifier", "nomingw", "noc++11"]), # This test doesn't work with appverifier
("IceStorm/federation", ["service", "novc100", "nomingw", "noc++11"]),
("IceStorm/federation2", ["service", "novc100", "nomingw", "noc++11"]),
diff --git a/cpp/config/Make.rules b/cpp/config/Make.rules
index 3b9a5e45b11..ed6c878e4b0 100644
--- a/cpp/config/Make.rules
+++ b/cpp/config/Make.rules
@@ -52,7 +52,7 @@ static_projects = test/%
#
# Components and projects which are built with C++11
#
-cpp11_components = $(coreandstub_components) icebox iceboxadmin
+cpp11_components = $(coreandstub_components) icebox
cpp11_projects = test/Common \
test/IceUtil/% \
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")