Skip to content

Commit

Permalink
[tests] Ignore a link sdk test that calls MulticastDelegate.BeginInvoke.
Browse files Browse the repository at this point in the history
MulticastDelegate.BeginInvoke isn't supported in .NET.

Ref: dotnet/runtime#16312
  • Loading branch information
rolfbjarne committed Aug 26, 2020
1 parent 3eeb462 commit a44fdae
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions tests/linker/ios/link sdk/AotBugs.cs
Original file line number Diff line number Diff line change
Expand Up @@ -469,6 +469,9 @@ public void Bug8379_b ()
}

[Test]
#if NET
[Ignore ("MulticastDelegate.BeginInvoke isn't supported in .NET (https://github.com/dotnet/runtime/issues/16312)")]
#endif
public void Bug5354 ()
{
Action<string> testAction = (string s) => { s.ToString (); };
Expand Down

0 comments on commit a44fdae

Please sign in to comment.