diff options
author | Jose <jose@zeroc.com> | 2016-01-04 18:12:01 +0100 |
---|---|---|
committer | Jose <jose@zeroc.com> | 2016-01-04 18:12:01 +0100 |
commit | d9e5b954e165554e7ddb39de92e02319d276ac22 (patch) | |
tree | f2dcdd29f4a8a3f1c1fda13bd05503dfce7ee4b6 /scripts/TestUtil.py | |
parent | Fix ICE-6903 (diff) | |
download | ice-d9e5b954e165554e7ddb39de92e02319d276ac22.tar.bz2 ice-d9e5b954e165554e7ddb39de92e02319d276ac22.tar.xz ice-d9e5b954e165554e7ddb39de92e02319d276ac22.zip |
C++11 test fixes
Diffstat (limited to 'scripts/TestUtil.py')
-rwxr-xr-x | scripts/TestUtil.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/scripts/TestUtil.py b/scripts/TestUtil.py index 86cee571f94..80288bdf12b 100755 --- a/scripts/TestUtil.py +++ b/scripts/TestUtil.py @@ -808,6 +808,8 @@ def getIceBox(): iceBox += "32" if cpp11: iceBox += "++11" + elif isDarwin and cpp11: + iceBox += "++11" iceBox = os.path.join(getCppBinDir(lang), iceBox) elif lang == "java": iceBox = "IceBox.Server" |