Index: new_tests/OFSubprocessTests.m ================================================================== --- new_tests/OFSubprocessTests.m +++ new_tests/OFSubprocessTests.m @@ -41,12 +41,16 @@ programName: program arguments: arguments environment: environment]; [subprocess writeLine: @"Hellö world!"]; +#ifdef OF_HAVE_UNICODE_TABLES OTAssertEqualObjects([subprocess readLine], @"HELLÖ WORLD!"); +#else + OTAssertEqualObjects([subprocess readLine], @"HELLö WORLD!"); +#endif [subprocess closeForWriting]; OTAssertEqual([subprocess waitForTermination], 0); } @end