Reconstructed release dates in ChangeLog
[libt2n] / test / cmdgroup.cpp
index 32f8c6d..eee54bf 100644 (file)
@@ -167,19 +167,23 @@ class test_cmdgroup : public TestFixture
 
     CPPUNIT_TEST_SUITE_END();
 
+    pid_t child_pid;
+
     public:
 
     void setUp()
     { }
 
     void tearDown()
-    { }
+    {
+        // make sure the server-child is dead before the next test runs
+        kill(child_pid,SIGKILL);
+        sleep(1);
+    }
 
     void GroupOk()
     {
-        pid_t pid;
-
-        switch(pid=fork())
+        switch(child_pid=fork())
         {
             case -1:
             {
@@ -189,12 +193,18 @@ class test_cmdgroup : public TestFixture
             case 0:
             // child
             {
-                socket_server ss("./socket");
-                group_command_server<cmd_group_a> cs(ss);
+                try
+                {
+                    socket_server ss("./socket");
+                    group_command_server<cmd_group_a> cs(ss);
 
-                // max 10 sec
-                for (int i=0; i < 10; i++)
-                    cs.handle(1000000);
+                    // max 10 sec
+                    for (int i=0; i < 10; i++)
+                        cs.handle(1000000);
+                } catch(...)
+                {
+                    std::cerr << "exception in child. ignoring\n";
+                }
 
                 // don't call atexit and stuff
                 _exit(0);
@@ -220,9 +230,7 @@ class test_cmdgroup : public TestFixture
 
     void WrongGroup()
     {
-        pid_t pid;
-
-        switch(pid=fork())
+        switch(child_pid=fork())
         {
             case -1:
             {
@@ -232,12 +240,18 @@ class test_cmdgroup : public TestFixture
             case 0:
             // child
             {
-                socket_server ss("./socket");
-                group_command_server<cmd_group_b> cs(ss);
+                try
+                {
+                    socket_server ss("./socket");
+                    group_command_server<cmd_group_b> cs(ss);
 
-                // max 10 sec
-                for (int i=0; i < 10; i++)
-                    cs.handle(1000000);
+                    // max 10 sec
+                    for (int i=0; i < 10; i++)
+                        cs.handle(1000000);
+                } catch(...)
+                {
+                    std::cerr << "exception in child. ignoring\n";
+                }
 
                 // don't call atexit and stuff
                 _exit(0);