diff options
-rw-r--r-- | src/testsuite.cpp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/testsuite.cpp b/src/testsuite.cpp index 80a9a3d38..9d782764e 100644 --- a/src/testsuite.cpp +++ b/src/testsuite.cpp @@ -11,18 +11,19 @@ * --------------------------------------------------- */ -/* $Install: src/inspircd $(BINPATH) */ +/* $Core: libIRCDtestsuite */ #include "inspircd.h" #include "testsuite.h" TestSuite::TestSuite(InspIRCd* ServerInstance) { + printf("\n\n*** STARTING TESTSUITE ***\n"); FOREACH_MOD(I_OnRunTestSuite, OnRunTestSuite()); } TestSuite::~TestSuite() { + printf("\n\n*** END OF TEST SUITE ***\n"); } -/* $Core: libIRCDtestsuite */ |