Index: tests/OFIPXSocketTests.m ================================================================== --- tests/OFIPXSocketTests.m +++ tests/OFIPXSocketTests.m @@ -37,17 +37,17 @@ } @catch (OFBindFailedException *e) { switch (e.errNo) { case EAFNOSUPPORT: [of_stdout setForegroundColor: [OFColor lime]]; [of_stdout writeLine: - @"[OFIPXSocket] -[bindToPort:packetType:]: " + @"\r[OFIPXSocket] -[bindToPort:packetType:]: " @"IPX unsupported, skipping tests"]; break; case EADDRNOTAVAIL: [of_stdout setForegroundColor: [OFColor lime]]; [of_stdout writeLine: - @"[OFIPXSocket] -[bindToPort:packetType:]: " + @"\r[OFIPXSocket] -[bindToPort:packetType:]: " @"IPX not configured, skipping tests"]; break; default: @throw e; } Index: tests/OFSPXSocketTests.m ================================================================== --- tests/OFSPXSocketTests.m +++ tests/OFSPXSocketTests.m @@ -90,23 +90,23 @@ } @catch (OFBindFailedException *e) { switch (e.errNo) { case EAFNOSUPPORT: [of_stdout setForegroundColor: [OFColor lime]]; [of_stdout writeLine: - @"[OFSPXSocket] -[bindToPort:]: " + @"\r[OFSPXSocket] -[bindToPort:]: " @"IPX unsupported, skipping tests"]; break; case ESOCKTNOSUPPORT: [of_stdout setForegroundColor: [OFColor lime]]; [of_stdout writeLine: - @"[OFSPXSocket] -[bindToPort:]: " + @"\r[OFSPXSocket] -[bindToPort:]: " @"SPX unsupported, skipping tests"]; break; case EADDRNOTAVAIL: [of_stdout setForegroundColor: [OFColor lime]]; [of_stdout writeLine: - @"[OFSPXSocket] -[bindToPort:]: " + @"\r[OFSPXSocket] -[bindToPort:]: " @"IPX not configured, skipping tests"]; break; default: @throw e; } @@ -172,11 +172,11 @@ } @catch (OFObserveFailedException *e) { switch (e.errNo) { case ENOTSOCK: [of_stdout setForegroundColor: [OFColor lime]]; [of_stdout writeLine: - @"[OFSPXSocket] -[asyncAccept] & " + @"\r[OFSPXSocket] -[asyncAccept] & " @"-[asyncConnectToNode:network:port:]: select() " @"not supported for SPX, skipping test"]; break; default: @throw e; Index: tests/OFSPXStreamSocketTests.m ================================================================== --- tests/OFSPXStreamSocketTests.m +++ tests/OFSPXStreamSocketTests.m @@ -90,23 +90,23 @@ } @catch (OFBindFailedException *e) { switch (e.errNo) { case EAFNOSUPPORT: [of_stdout setForegroundColor: [OFColor lime]]; [of_stdout writeLine: - @"[OFSPXStreamSocket] -[bindToPort:]: " + @"\r[OFSPXStreamSocket] -[bindToPort:]: " @"IPX unsupported, skipping tests"]; break; case ESOCKTNOSUPPORT: [of_stdout setForegroundColor: [OFColor lime]]; [of_stdout writeLine: - @"[OFSPXStreamSocket] -[bindToPort:]: " + @"\r[OFSPXStreamSocket] -[bindToPort:]: " @"SPX unsupported, skipping tests"]; break; case EADDRNOTAVAIL: [of_stdout setForegroundColor: [OFColor lime]]; [of_stdout writeLine: - @"[OFSPXStreamSocket] -[bindToPort:]: " + @"\r[OFSPXStreamSocket] -[bindToPort:]: " @"IPX not configured, skipping tests"]; break; default: @throw e; } @@ -175,11 +175,11 @@ } @catch (OFObserveFailedException *e) { switch (e.errNo) { case ENOTSOCK: [of_stdout setForegroundColor: [OFColor lime]]; [of_stdout writeLine: - @"[OFSPXStreamSocket] -[asyncAccept] & " + @"\r[OFSPXStreamSocket] -[asyncAccept] & " @"-[asyncConnectToNode:network:port:]: select() " @"not supported for SPX, skipping test"]; break; default: @throw e;