-
Notifications
You must be signed in to change notification settings - Fork 593
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Disable IPv6 for C# Ice/adapterDeactivation #3050
Changes from 2 commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,10 @@ | |
# Copyright (c) ZeroC, Inc. All rights reserved. | ||
# | ||
|
||
from Util import TestSuite | ||
from Util import CSharpMapping, Darwin, TestSuite, platform, Mapping | ||
|
||
# Disable IPv6 for macOS until https://github.com/dotnet/runtime/pull/108334 is merged in .NET 8 | ||
# See https://github.com/zeroc-ice/ice/issues/2061 | ||
ipv6 = not (isinstance(Mapping.getByPath(__name__), CSharpMapping) and isinstance(platform, Darwin)) | ||
|
||
TestSuite(__name__, multihost=False) | ||
TestSuite(__name__, multihost=False, options={"ipv6": [ipv6]}) | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. When we set ipv6 to true, what happens? Do we still run the test with ipv4? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Here IPv6 means the tests supports ipv6, this affects the combinations that are run when you use |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Remove comment above.