Index: README-WINDOWS.md ================================================================== --- README-WINDOWS.md +++ README-WINDOWS.md @@ -32,11 +32,11 @@ does *not* include GCC versions that output DWARF-2 exceptions! When asked for an installation path, it is recommended to keep the default of `C:\MinGW32`; the selected mirror does not really matter. After that, the components to be installed have to be selected. Select `TDM-GCC Recommended, C/C++` as installation type, then expand `Components` → `gcc` → `Version` and select the -TDM-GCC version ending in -dw2 and enable the `objc` checkbox. Click next and +TDM-GCC version ending in -dw2 and enable the `objc` checkbox. In the next step the installer will start downloading and installing the selected components. MSys ---- Index: src/OFApplication.m ================================================================== --- src/OFApplication.m +++ src/OFApplication.m @@ -26,10 +26,11 @@ #import "OFApplication.h" #import "OFString.h" #import "OFArray.h" #import "OFDictionary.h" +#import "OFThread.h" #import "OFNotImplementedException.h" #import "autorelease.h" @@ -293,10 +294,13 @@ } - (void)run { [delegate applicationDidFinishLaunching]; + + for (;;) + [OFThread sleepForTimeInterval: 86400]; } - (void)terminate { exit(0); Index: tests/TestsAppDelegate.m ================================================================== --- tests/TestsAppDelegate.m +++ tests/TestsAppDelegate.m @@ -147,9 +147,8 @@ [self forwardingTests]; #ifdef OF_HAVE_PROPERTIES [self propertiesTests]; #endif - if (fails > 0) - [OFApplication terminateWithStatus: fails]; + [OFApplication terminateWithStatus: fails]; } @end