libt2n: (tomj) added exception handling to every child after fork(). This is needed...
[libt2n] / test / newserver.cpp
index 2631d0e..369d635 100644 (file)
@@ -138,23 +138,29 @@ class test_newserver : public TestFixture
             case 0:
             // child
             {
+                try
                 {
-                    socket_server ss("./socket");
-                    command_server cs(ss);
-
-                    // handle new connection and just one command
-                    cs.handle(10000000);
-                    cs.handle(10000000);
-                }
-                // close socket, create new one
+                    {
+                        socket_server ss("./socket");
+                        command_server cs(ss);
+
+                        // handle new connection and just one command
+                        cs.handle(10000000);
+                        cs.handle(10000000);
+                    }
+                    // close socket, create new one
+                    {
+                        socket_server ss("./socket");
+                        ss.set_logging(&cerr,debug);
+                        command_server cs(ss);
+
+                        // max 30 sec
+                        for (int i=0; i < 30; i++)
+                            cs.handle(1000000);
+                    }
+                } catch(...)
                 {
-                    socket_server ss("./socket");
-                    ss.set_logging(&cerr,debug);
-                    command_server cs(ss);
-
-                    // max 30 sec
-                    for (int i=0; i < 30; i++)
-                        cs.handle(1000000);
+                    std::cerr << "exception in child. ignoring\n";
                 }
 
                 // don't call atexit and stuff
@@ -164,6 +170,9 @@ class test_newserver : public TestFixture
             default:
             // parent
             {
+                // don't kill us on broken pipe
+                signal(SIGPIPE, SIG_IGN);
+
                 // wait till server is up
                 sleep(1);
                 socket_client_connection sc("./socket");
@@ -188,7 +197,7 @@ class test_newserver : public TestFixture
                 catch(...)
                     { throw; }
 
-                CPPUNIT_ASSERT_EQUAL(string("error reading from socket : Connection reset by peer"),errormsg);
+                CPPUNIT_ASSERT_EQUAL(string("write() returned Bad file descriptor"),errormsg);
             }
         }
     }