]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - src/testsuite.cpp
Remove excessive debug
[user/henk/code/inspircd.git] / src / testsuite.cpp
index 71ace375e295a7ebe60513051a9b5202695322a3..1cee7500c830b25ebaf792d61057b3582f900533 100644 (file)
@@ -56,7 +56,6 @@ TestSuite::TestSuite(InspIRCd* Instance) : ServerInstance(Instance)
                cout << "(3) Unload a module\n";
                cout << "(4) Threading tests\n";
                cout << "(5) Wildcard and CIDR tests\n";
-               cout << "(6) irc::string -> std::string dynamic cast\n";
 
                cout << endl << "(X) Exit test suite\n";
 
@@ -87,14 +86,6 @@ TestSuite::TestSuite(InspIRCd* Instance) : ServerInstance(Instance)
                        case '5':
                                cout << (DoWildTests() ? "\nSUCCESS!\n" : "\nFAILURE\n");
                        break;
-                       case '6':
-                               {
-                                       std::string* a = new std::string("test");
-                                       irc::string* b = (irc::string)a;
-                                       cout << "std::string value: '" << *a << "' irc::string value: '" << *b << "'" << endl;
-                                       delete a;
-                               }
-                       break;
                        case 'X':
                                return;
                        break;