From: Thomas Jarosch Date: Mon, 24 Nov 2008 14:48:51 +0000 (+0000) Subject: libt2n: (tomj) disable recently added unit test: it won't work as is X-Git-Tag: v0.5~11 X-Git-Url: http://developer.intra2net.com/git/?p=libt2n;a=commitdiff_plain;h=15980b02dac194a6f0dddce9c1750d914d97aa71;hp=039e52da9b40d0e729360ff0a953dfbddf975b8a libt2n: (tomj) disable recently added unit test: it won't work as is --- diff --git a/test/newserver.cpp b/test/newserver.cpp index 2631d0e..c5ec6d2 100644 --- a/test/newserver.cpp +++ b/test/newserver.cpp @@ -188,7 +188,14 @@ class test_newserver : public TestFixture catch(...) { throw; } - CPPUNIT_ASSERT_EQUAL(string("error reading from socket : Connection reset by peer"),errormsg); + + // FIXME: This test won't work by design: + // The server closes the file descriptor + // and then reopens the server socket. + // Unfortunately the same socket # will be assigned + // and so the second write succeedes, too. +// CPPUNIT_ASSERT_EQUAL(string("error reading from socket : Connection reset by peer"),errormsg); + CPPUNIT_ASSERT_EQUAL(string(""),errormsg); } } }