diff options
author | Jose <jose@zeroc.com> | 2014-12-03 16:49:52 +0100 |
---|---|---|
committer | Jose <jose@zeroc.com> | 2014-12-03 16:49:52 +0100 |
commit | aeaafd3f71b012ab3f07a5bd034335c9a70aab4f (patch) | |
tree | 8e0fb07decd238d75791117dc946c7c407773f6e /cpp/allDemos.py | |
parent | Fixed (ICE-6053) - MFC demo warnings (diff) | |
download | ice-aeaafd3f71b012ab3f07a5bd034335c9a70aab4f.tar.bz2 ice-aeaafd3f71b012ab3f07a5bd034335c9a70aab4f.tar.xz ice-aeaafd3f71b012ab3f07a5bd034335c9a70aab4f.zip |
Fixed (ICE-6054) - Demo cpp/IceGrid/customLoadbalancing fails on Ubuntu 14.04 64-bit
Diffstat (limited to 'cpp/allDemos.py')
-rwxr-xr-x | cpp/allDemos.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cpp/allDemos.py b/cpp/allDemos.py index 3d9c1e04973..9b1c1edb67a 100755 --- a/cpp/allDemos.py +++ b/cpp/allDemos.py @@ -76,10 +76,10 @@ demos = [ # use x86 db tools that are currently not available for x64 # distributions. # -if not Util.isX86(): +if not "--x86" in sys.argv: demos += ["Freeze/backup"] -if not Util.isCpp11(): +if not "--c++11" in sys.argv: demos += ["IceGrid/customLoadBalancing"] if __name__ == "__main__": |