[XHarness] Ignore corlib on tvOS until mono fixes the test dlls. (#6063)

Test dlls are wrong so we will ignore them until mono fixes them.

Fixes: https://github.com/xamarin/maccore/issues/1611
Mono issue: https://github.com/mono/mono/issues/14497
This commit is contained in:
Manuel de la Pena 2019-05-17 08:41:18 -07:00 коммит произвёл GitHub
Родитель 155bb924de
Коммит a1c19733d8
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 1 добавлений и 0 удалений

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

@ -149,6 +149,7 @@ namespace BCLTestImporter {
static readonly List<string> iOSIgnoredAssemblies = new List<string> {};
static readonly List<string> tvOSIgnoredAssemblies = new List<string> {
"monotouch_corlib_xunit-test.dll", // ignored due to https://github.com/xamarin/maccore/issues/1611 until mono fixes it
"monotouch_System_xunit-test.dll", // ignored due to https://github.com/xamarin/maccore/issues/1610
};