diff options
Diffstat (limited to 'cpp/allDemos.py')
-rwxr-xr-x | cpp/allDemos.py | 13 |
1 files changed, 5 insertions, 8 deletions
diff --git a/cpp/allDemos.py b/cpp/allDemos.py index b7d54ead583..3d9c1e04973 100755 --- a/cpp/allDemos.py +++ b/cpp/allDemos.py @@ -51,7 +51,8 @@ demos = [ "IceStorm/counter", "IceStorm/replicated2", "IceGrid/allocate", - "IceGrid/customLoadBalancing", + "IceStorm/replicated", + "IceGrid/icebox", "IceGrid/replication", "IceGrid/sessionActivation", "IceGrid/secure", @@ -71,13 +72,6 @@ demos = [ "Manual/lifecycle"] # -# For this demos the descriptor hardcode the icebox name and will -# not work with configurations that use different icebox names. -# -if Util.getIceBox().endswith("icebox"): - demos += ["IceStorm/replicated", "IceGrid/icebox"] - -# # Freeze backup doesn't work on x86 multiarch because it require to # use x86 db tools that are currently not available for x64 # distributions. @@ -85,5 +79,8 @@ if Util.getIceBox().endswith("icebox"): if not Util.isX86(): demos += ["Freeze/backup"] +if not Util.isCpp11(): + demos += ["IceGrid/customLoadBalancing"] + if __name__ == "__main__": Util.run(demos) |