From 6c2208734df28102fa845b5b94f437c75beaba2b Mon Sep 17 00:00:00 2001 From: Rolf Bjarne Kvinge Date: Thu, 30 Jun 2016 01:00:03 -0700 Subject: [PATCH] [link all] Ignore tests that uses our networking stack for watchOS. Fixes #41539. (#330) https://bugzilla.xamarin.com/show_bug.cgi?id=41539 --- tests/linker-ios/link all/LinkAllTest.cs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/tests/linker-ios/link all/LinkAllTest.cs b/tests/linker-ios/link all/LinkAllTest.cs index 4e74e8ee8b..b4cbbdf3de 100644 --- a/tests/linker-ios/link all/LinkAllTest.cs +++ b/tests/linker-ios/link all/LinkAllTest.cs @@ -160,6 +160,9 @@ namespace LinkAll { [Test] public void TrustUsingOldPolicy () { +#if __WATCHOS__ + Assert.Ignore ("WatchOS doesn't support BSD sockets, which our network stack currently requires."); +#endif // Three similar tests exists in dontlink, linkall and linksdk to test 3 different cases // untrusted, custom ICertificatePolicy and ServerCertificateValidationCallback without // having caching issues (in S.Net or the SSL handshake cache)