You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
[release/9.0-staging] disable multicast tests on AzureLinux (#119475)
Backport of #117694 to release/9.0-staging
/cc @jeffhandley@wfurt@ManickaP
## Customer Impact
Related to #115502. Default AZL has firewall that blocks multicast.
- [ ] Customer reported
- [x] Found internally
## Regression
- [ ] Yes
- [x] No
## Testing
This was verified in main and is also being backported to
release/8.0-staging via #115502, to ensure the test doesn't fail in our
baseline extra-platforms tests.
## Risk
Low. Conditional test disablement.
---------
Co-authored-by: wfurt <tweinfurt@yahoo.com>
Co-authored-by: Marie Píchová <11718369+ManickaP@users.noreply.github.com>
@@ -65,8 +68,7 @@ public void MulticastOption_CreateSocketSetGetOption_GroupAndInterfaceIndex_SetS
65
68
}
66
69
}
67
70
68
-
[ConditionalFact(typeof(PlatformDetection),nameof(PlatformDetection.IsNotWindowsNanoNorServerCore))]// Skip on Nano: https://github.com/dotnet/runtime/issues/26286
[SkipOnPlatform(TestPlatforms.OSX,"Multicast interface selection fails on macOS 14+ due to changes in how the system handles network interface parameters")]
@@ -124,10 +126,9 @@ public void MulticastInterface_Set_InvalidIndex_Throws()
124
126
}
125
127
}
126
128
127
-
[ConditionalFact(typeof(PlatformDetection),nameof(PlatformDetection.IsNotWindowsNanoNorServerCore))]// Skip on Nano: https://github.com/dotnet/runtime/issues/26286
129
+
[ConditionalFact(nameof(CanRunMulticastTests))]
128
130
[SkipOnPlatform(TestPlatforms.OSX|TestPlatforms.FreeBSD,"Expected behavior is different on OSX or FreeBSD")]
0 commit comments