just hope for extension to work

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@39840 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Richard Frith-MacDonald 2016-06-06 20:49:08 +00:00
parent 5224b275d8
commit e7c50a1eb2

View file

@ -36,6 +36,7 @@ int main()
#endif
NS_DURING
{
testHopeful = YES;
PASS([lock isLockedByCurrentThread] == NO,
"NSRecursiveLock isLockedByCurrentThread returns NO when not locked");
[lock lock];
@ -44,6 +45,7 @@ int main()
[lock unlock];
PASS([lock isLockedByCurrentThread] == NO,
"NSRecursiveLock isLockedByCurrentThread returns NO when unlocked");
testHopeful = NO;
}
NS_HANDLER
{