diff options
author | Jose <jose@zeroc.com> | 2019-07-18 23:51:08 +0200 |
---|---|---|
committer | Jose <jose@zeroc.com> | 2019-07-18 23:51:08 +0200 |
commit | fc886b010c01cccb8cca3ac4d92f1ebd7fc72295 (patch) | |
tree | 51cf00a4a955efecc9c94527aeafcb25ffbe57b9 /scripts/tests/IceDiscovery/simple.py | |
parent | Simplify OutputStream creation (diff) | |
parent | Fixed non-thread safe AMD dispatch, fixes #448 (#449) (diff) | |
download | ice-fc886b010c01cccb8cca3ac4d92f1ebd7fc72295.tar.bz2 ice-fc886b010c01cccb8cca3ac4d92f1ebd7fc72295.tar.xz ice-fc886b010c01cccb8cca3ac4d92f1ebd7fc72295.zip |
Merge remote-tracking branch 'origin/3.7' into swift
Diffstat (limited to 'scripts/tests/IceDiscovery/simple.py')
-rw-r--r-- | scripts/tests/IceDiscovery/simple.py | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/scripts/tests/IceDiscovery/simple.py b/scripts/tests/IceDiscovery/simple.py index cac139890e7..c34907d0f9d 100644 --- a/scripts/tests/IceDiscovery/simple.py +++ b/scripts/tests/IceDiscovery/simple.py @@ -34,7 +34,13 @@ def suppressWarning(x): # Filter-out the warning about invalid lookup proxy outfilters = [ lambda x: suppressWarning(x) ] +options = None +if isinstance(platform,AIX): + # AIX test VMs only have IPv6 enabled on the loopback interface + # where multicast doesn't work + options = { "ipv6" : [False] } + TestSuite(__name__, [ ClientServerTestCase(client=Client(args=[3], props=props, outfilters=outfilters), servers=[Server(args=[i], readyCount=4, props=props) for i in range(0, 3)]) -], multihost=False) +], multihost=False, options=options) |