[tests] Ignore a link sdk test that calls MulticastDelegate.BeginInvoke.

MulticastDelegate.BeginInvoke isn't supported in .NET.

Ref: https://github.com/dotnet/runtime/issues/16312
This commit is contained in:
Rolf Bjarne Kvinge 2020-08-25 17:15:04 +02:00
Родитель 3eeb46261a
Коммит a44fdae53d
1 изменённых файлов: 3 добавлений и 0 удалений

Просмотреть файл

@ -469,6 +469,9 @@ namespace LinkSdk.Aot {
}
[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 (); };