From 15980b02dac194a6f0dddce9c1750d914d97aa71 Mon Sep 17 00:00:00 2001 From: Thomas Jarosch Date: Mon, 24 Nov 2008 14:48:51 +0000 Subject: [PATCH 1/1] libt2n: (tomj) disable recently added unit test: it won't work as is --- test/newserver.cpp | 9 ++++++++- 1 files changed, 8 insertions(+), 1 deletions(-) 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); } } } -- 1.7.1