File tree Expand file tree Collapse file tree 2 files changed +3
-7
lines changed Expand file tree Collapse file tree 2 files changed +3
-7
lines changed Original file line number Diff line number Diff line change @@ -113,12 +113,6 @@ public void MetadataObjectTypesTest ()
113113 case AVMetadataObjectType . DogBody :
114114 case AVMetadataObjectType . HumanBody :
115115 case AVMetadataObjectType . SalientObject :
116- // fail *and crash* on iOS 8 (at least on 32bits devices)
117- if ( ! TestRuntime . CheckXcodeVersion ( 11 , 0 ) )
118- continue ;
119- // xcode 12 beta 1 on device
120- if ( TestRuntime . IsDevice && TestRuntime . CheckXcodeVersion ( 12 , 0 ) )
121- continue ;
122116 break ;
123117 case AVMetadataObjectType . CodabarCode :
124118 case AVMetadataObjectType . GS1DataBarCode :
Original file line number Diff line number Diff line change @@ -295,9 +295,11 @@ public void RoundtripRSA1024OAEP ()
295295 }
296296
297297 [ Test ]
298- [ Ignore ( "crash with Xcode 12" ) ]
299298 public void SignVerifyRSAMinPKCS1SHA1 ( )
300299 {
300+ if ( RuntimeInformation . ProcessArchitecture == Architecture . X64 )
301+ Assert . Ignore ( "This test raises a SIGFPE signal which ends up killing the process on x64." ) ;
302+
301303 SecKey private_key ;
302304 SecKey public_key ;
303305 var label = $ "KeyTest.SignVerifyRSAMinPKCS1SHA1-{ CFBundle . GetMain ( ) . Identifier } -{ GetType ( ) . FullName } -{ Process . GetCurrentProcess ( ) . Id } ";
You can’t perform that action at this time.
0 commit comments