OSDN Git Service

make do not error message when nested fixture exist
authortsutsumi <>
Wed, 17 Sep 2003 21:19:21 +0000 (21:19 +0000)
committertsutsumi <>
Wed, 17 Sep 2003 21:19:21 +0000 (21:19 +0000)
src/ccunit/CCUnitReadSuite.c

index 89dec7e..9ff867d 100644 (file)
@@ -607,15 +607,12 @@ static void readTestFixture (CCUnitTestSuiteDef* parent, const char* cname)
        {
          if ((name = getTestFixtureName (doc)) != NULL)
            {
-             ccunit_err ("%s:%lu: unbaranced end fixture comment '%s', "
-                         "need /** end fixture: %s */",
-                         line.fname, line.lno, doc, cname);
              readTestFixture (suite, name);
              safe_free (doc);
            }
          else if ((name = getEndOfFixture (doc)) != NULL)
            {
-             ccunit_log ("exit test fixture: %s", fixture->testdef.name);
+             ccunit_log ("end test fixture: %s", fixture->testdef.name);
              safe_free (doc);
              break;
            }