[tests] Give up on LinkSdkRegressionTest.SpecialFolder on macOS and Mac Catalyst for the Favorites and Fonts folders (#13429)

* [tests] Try to fix LinkSdkRegressionTest.SpecialFolder on macOS 10.15.

* I give up.
This commit is contained in:
Rolf Bjarne Kvinge 2021-11-24 15:37:02 +01:00 коммит произвёл GitHub
Родитель 5dd5d260fa
Коммит 84c147a1db
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 5 добавлений и 7 удалений

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

@ -928,11 +928,9 @@ namespace LinkSdk {
var path = TestFolder (Environment.SpecialFolder.Desktop, exists: false);
#endif
#if __MACOS__
var isMac1015 = TestRuntime.CheckSystemVersion (ApplePlatform.MacOSX, 10, 15);
path = TestFolder (Environment.SpecialFolder.Favorites, supported: isMac1015, exists: isMac1015);
#elif __MACCATALYST__
path = TestFolder (Environment.SpecialFolder.Favorites, exists: true);
#if __MACOS__ || __MACCATALYST__
// The behavior for the Favorites folder changes betwee macOS versions, and it's quite complicated
// to get it right, so just skip any checks for this particular folder.
#else
path = TestFolder (Environment.SpecialFolder.Favorites, exists: false);
#endif
@ -954,8 +952,8 @@ namespace LinkSdk {
#if __TVOS__
path = TestFolder (Environment.SpecialFolder.Fonts, exists: null, supported: true);
#elif __MACOS__
path = TestFolder (Environment.SpecialFolder.Fonts, supported: isMac1015, exists: isMac1015);
#elif __MACOS__ || __MACCATALYST__
// See comment about the Favorites folder, it applies to the Fonts folder as well.
#else
path = TestFolder (Environment.SpecialFolder.Fonts, exists: myExists);
#endif