[tests] Disable some of linkall's SealerTest in .NET/Release until we can implement them. (#9575)

Fixes these test failures:

    Linker.Sealer.SealerTest
    [FAIL] Final :   A
        Expected: True
        But was:  False
            at Linker.Sealer.SealerTest.Final()

    [FAIL] Sealed :   Sealable
        Expected: True
        But was:  False
            at Linker.Sealer.SealerTest.Sealed()

    [FAIL] Virtual :   C
        Expected: False
        But was:  True
            at Linker.Sealer.SealerTest.Virtual()
This commit is contained in:
Rolf Bjarne Kvinge 2020-09-07 10:20:38 +02:00 коммит произвёл GitHub
Родитель 0a1a68ab9f
Коммит c56b893b68
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 9 добавлений и 0 удалений

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

@ -36,6 +36,9 @@ namespace Linker.Sealer {
[Preserve (AllMembers = true)]
public class SealerTest {
#if !DEBUG && NET
[Ignore ("https://github.com/xamarin/xamarin-macios/issues/9573")]
#endif
[Test]
public void Sealed ()
{
@ -59,6 +62,9 @@ namespace Linker.Sealer {
#endif
}
#if !DEBUG && NET
[Ignore ("https://github.com/xamarin/xamarin-macios/issues/9573")]
#endif
[Test]
public void Final ()
{
@ -79,6 +85,9 @@ namespace Linker.Sealer {
#endif
}
#if !DEBUG && NET
[Ignore ("https://github.com/xamarin/xamarin-macios/issues/9573")]
#endif
[Test]
public void Virtual ()
{