From a83b5bf29966f20c78c0f5c97bccd918214b9779 Mon Sep 17 00:00:00 2001 From: Richard Frith-MacDonald Date: Sat, 5 Mar 2016 17:08:26 +0000 Subject: [PATCH] skip set on windows git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@39464 72102866-910b-0410-8b05-ffd578937521 --- Tests/base/NSLock/RecursiveLock.m | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/Tests/base/NSLock/RecursiveLock.m b/Tests/base/NSLock/RecursiveLock.m index 17c3ff25d..964daa0c3 100644 --- a/Tests/base/NSLock/RecursiveLock.m +++ b/Tests/base/NSLock/RecursiveLock.m @@ -30,6 +30,10 @@ int main() PASS(ret, "NSRecursiveLock lockBeforeDate: with NSRecursiveLock returns YES"); #if defined(GNUSTEP_BASE_LIBRARY) + START_SET("mutex ownership extension") +#if defined(_WIN32) + SKIP("feature not available on windows") +#endif NS_DURING { PASS([lock isLockedByCurrentThread] == NO, @@ -46,6 +50,7 @@ int main() NSLog(@"-isLockedByCurrentThread not supported"); } NS_ENDHANDLER + END_SET("mutex ownership extension") #endif [arp release]; arp = nil;