File tree Expand file tree Collapse file tree 3 files changed +32
-22
lines changed
src/libraries/System.Net.Security/tests/FunctionalTests Expand file tree Collapse file tree 3 files changed +32
-22
lines changed Original file line number Diff line number Diff line change @@ -90,22 +90,25 @@ stages:
9090 buildConfig : release
9191 runtimeFlavor : mono
9292 platforms :
93- - Android_x64
94- - Android_x86
95- - Android_arm
96- - Android_arm64
97- - tvOS_x64
98- - tvOS_arm64
99- - iOS_x64
100- - iOS_x86
101- - iOS_arm
102- - iOS_arm64
10393 - OSX_x64
10494 - Linux_x64
10595 - Linux_arm
10696 - Linux_arm64
10797 - Linux_musl_x64
10898 - Browser_wasm
99+
100+ # https://github.com/dotnet/runtime/pull/50940
101+ # - Android_x64
102+ # - Android_x86
103+ # - Android_arm
104+ # - Android_arm64
105+ # - tvOS_x64
106+ # - tvOS_arm64
107+ # - iOS_x64
108+ # - iOS_x86
109+ # - iOS_arm
110+ # - iOS_arm64
111+
109112 # - Linux_musl_arm
110113 # - Linux_musl_arm64
111114 # - Windows_NT_x64 enable once coreclr.dll has a version header: https://github.com/dotnet/runtime/issues/37503
Original file line number Diff line number Diff line change @@ -263,12 +263,14 @@ jobs:
263263 buildConfig : ${{ variables.debugOnPrReleaseOnRolling }}
264264 runtimeFlavor : mono
265265 platforms :
266- - Android_x86
267- - Android_arm64
268- - tvOS_x64
269- - iOS_arm64
270- - iOS_x86
271266 - Linux_arm
267+
268+ # https://github.com/dotnet/runtime/pull/50940
269+ # - Android_x86
270+ # - Android_arm64
271+ # - tvOS_x64
272+ # - iOS_x86
273+ # - iOS_arm64
272274 jobParameters :
273275 testGroup : innerloop
274276 nameSuffix : AllSubsets_Mono
@@ -286,12 +288,14 @@ jobs:
286288 buildConfig : Release
287289 runtimeFlavor : mono
288290 platforms :
289- - Android_x64
290- - Android_arm
291- - tvOS_arm64
292- - iOS_arm
293- - iOS_x64
294291 - Linux_musl_x64
292+
293+ # https://github.com/dotnet/runtime/pull/50940
294+ # - Android_x64
295+ # - Android_arm
296+ # - tvOS_arm64
297+ # - iOS_x64
298+ # - iOS_arm
295299 jobParameters :
296300 testGroup : innerloop
297301 nameSuffix : AllSubsets_Mono
Original file line number Diff line number Diff line change @@ -402,7 +402,7 @@ public async Task SslStream_UntrustedCaWithCustomCallback_Throws(bool customCall
402402 }
403403 }
404404
405- [ Fact ]
405+ [ ConditionalFact ]
406406 [ ActiveIssue ( "https://github.com/dotnet/runtime/issues/46837" , TestPlatforms . OSX ) ]
407407 public async Task SslStream_ClientCertificate_SendsChain ( )
408408 {
@@ -434,7 +434,10 @@ public async Task SslStream_ClientCertificate_SendsChain()
434434 }
435435
436436 // Verify we can construct full chain
437- Assert . True ( chain . ChainElements . Count > clientChain . Count , "chain cannot be built" ) ;
437+ if ( chain . ChainElements . Count < clientChain . Count )
438+ {
439+ throw new SkipTestException ( $ "chain cannot be built { chain . ChainElements . Count } ") ;
440+ }
438441 }
439442
440443 var clientOptions = new SslClientAuthenticationOptions ( ) { TargetHost = "localhost" , } ;
You can’t perform that action at this time.
0 commit comments