Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -113,12 +113,6 @@ public void MetadataObjectTypesTest ()
case AVMetadataObjectType.DogBody:
case AVMetadataObjectType.HumanBody:
case AVMetadataObjectType.SalientObject:
// fail *and crash* on iOS 8 (at least on 32bits devices)
if (!TestRuntime.CheckXcodeVersion (11, 0))
continue;
// xcode 12 beta 1 on device
if (TestRuntime.IsDevice && TestRuntime.CheckXcodeVersion (12, 0))
continue;
break;
case AVMetadataObjectType.CodabarCode:
case AVMetadataObjectType.GS1DataBarCode:
Expand Down
4 changes: 3 additions & 1 deletion tests/monotouch-test/Security/KeyTest.cs
Original file line number Diff line number Diff line change
Expand Up @@ -295,9 +295,11 @@ public void RoundtripRSA1024OAEP ()
}

[Test]
[Ignore ("crash with Xcode 12")]
public void SignVerifyRSAMinPKCS1SHA1 ()
{
if (RuntimeInformation.ProcessArchitecture == Architecture.X64)
Assert.Ignore ("This test raises a SIGFPE signal which ends up killing the process on x64.");

SecKey private_key;
SecKey public_key;
var label = $"KeyTest.SignVerifyRSAMinPKCS1SHA1-{CFBundle.GetMain ().Identifier}-{GetType ().FullName}-{Process.GetCurrentProcess ().Id}";
Expand Down
Loading