libs-base/Tests/base/NSFileHandle/singleton.m
rfm bcbb4d0e50 Fix for singleton stdin,stdout,stderr retention
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@37289 72102866-910b-0410-8b05-ffd578937521
2013-10-27 05:42:40 +00:00

30 lines
950 B
Objective-C

#import "ObjectTesting.h"
#import <Foundation/Foundation.h>
id a,b,c;
int main(void)
{
NSAutoreleasePool *p = [NSAutoreleasePool new];
NSFileHandle *a;
NSFileHandle *b;
NSFileHandle *c;
START_SET("handle creation")
a = [NSFileHandle fileHandleWithStandardInput];
b = [NSFileHandle fileHandleWithStandardOutput];
c = [NSFileHandle fileHandleWithStandardError];
END_SET("handle creation")
PASS([a retainCount]> 0, "stdin persists");
PASS([b retainCount]> 0, "stdout persists");
PASS([c retainCount]> 0, "strerr persists");
PASS_EXCEPTION([a release], NSGenericException, "Cannot dealloc stdin");
PASS_EXCEPTION([b release], NSGenericException, "Cannot dealloc stdout");
PASS_EXCEPTION([c release], NSGenericException, "Cannot dealloc stderr");
PASS([a retainCount]> 0, "stdin persists");
PASS([b retainCount]> 0, "stdout persists");
PASS([c retainCount]> 0, "strerr persists");
[p drain];
return 0;
}