Index: tests/gamecontroller/GameControllerTests.m ================================================================== --- tests/gamecontroller/GameControllerTests.m +++ tests/gamecontroller/GameControllerTests.m @@ -98,12 +98,10 @@ atexit(gfxExit); consoleInit(GFX_TOP, NULL); #endif - [OFStdOut clear]; - for (;;) { void *pool = objc_autoreleasePoolPush(); if (_lastControllersUpdate == nil || -[_lastControllersUpdate timeIntervalSinceNow] > 1) { @@ -110,10 +108,12 @@ [_controllers release]; [_lastControllersUpdate release]; _controllers = [[OFGameController controllers] retain]; _lastControllersUpdate = [[OFDate alloc] init]; + + [OFStdOut clear]; } [OFStdOut setCursorPosition: OFMakePoint(0, 0)]; for (OFGameController *controller in _controllers) {