summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xconfigure3
-rw-r--r--include/threadengines/threadengine_pthread.h8
-rw-r--r--src/testsuite.cpp68
3 files changed, 76 insertions, 3 deletions
diff --git a/configure b/configure
index 2948e0b40..b23160249 100755
--- a/configure
+++ b/configure
@@ -1153,6 +1153,7 @@ sub writefiles {
#define OPTIMISATION $config{OPTIMITEMP}
#define LIBRARYDIR "$config{LIBRARY_DIR}"
#define SYSTEM "$incos"
+
EOF
print FILEHANDLE "#define MAXBUF " . ($config{MAXBUF}+2) . "\n";
@@ -1199,7 +1200,7 @@ print FILEHANDLE "#define MAXBUF " . ($config{MAXBUF}+2) . "\n";
print FILEHANDLE "#define USE_SELECT\n";
$se = "socketengine_select";
}
- print FILEHANDLE "\n#endif\n";
+ print FILEHANDLE "\n#include \"include/threadengines/threadengine_pthread.h\"\n\n#endif\n";
close(FILEHANDLE);
}
diff --git a/include/threadengines/threadengine_pthread.h b/include/threadengines/threadengine_pthread.h
index 2c821d93d..e8f7a4087 100644
--- a/include/threadengines/threadengine_pthread.h
+++ b/include/threadengines/threadengine_pthread.h
@@ -40,4 +40,12 @@ class CoreExport PThreadEngine : public ThreadEngine
void FreeThread(Thread* thread);
};
+class ThreadEngineFactory : public classbase
+{
+ ThreadEngine* Create(InspIRCd* ServerInstance)
+ {
+ return new PThreadEngine(ServerInstance);
+ }
+};
+
#endif
diff --git a/src/testsuite.cpp b/src/testsuite.cpp
index f02b3aed3..a129ecc72 100644
--- a/src/testsuite.cpp
+++ b/src/testsuite.cpp
@@ -15,15 +15,39 @@
#include "inspircd.h"
#include "testsuite.h"
+#include "threadengine.h"
#include <iostream>
using namespace std;
+class TestSuiteThread : public Thread
+{
+ TestSuiteThread() : Thread()
+ {
+ }
+
+ virtual ~TestSuiteThread()
+ {
+ }
+
+ virtual void Run()
+ {
+ while (1)
+ {
+ cout << "Test suite thread run...\n";
+ sleep(10);
+ }
+ }
+};
+
TestSuite::TestSuite(InspIRCd* Instance) : ServerInstance(Instance)
{
cout << "\n\n*** STARTING TESTSUITE ***\n";
std::string modname;
+ std::string choice;
+
+ ServerInstance->SE->Blocking(fileno(stdin));
while (1)
{
@@ -31,8 +55,13 @@ TestSuite::TestSuite(InspIRCd* Instance) : ServerInstance(Instance)
cout << "(2) Load a module\n";
cout << "(3) Unload a module\n";
cout << "(4) Threading tests\n";
-
- switch (fgetc(stdin))
+
+ cout << endl << "(X) Exit test suite\n";
+
+ cout << "\nChoice: ";
+ cin >> choice;
+
+ switch (*choice.begin())
{
case '1':
FOREACH_MOD(I_OnRunTestSuite, OnRunTestSuite());
@@ -50,6 +79,12 @@ TestSuite::TestSuite(InspIRCd* Instance) : ServerInstance(Instance)
case '4':
cout << (DoThreadTests() ? "\nSUCCESS!\n" : "\nFAILURE\n");
break;
+ case 'X':
+ return;
+ break;
+ default:
+ cout << "Invalid option\n";
+ break;
}
cout << endl;
}
@@ -57,6 +92,35 @@ TestSuite::TestSuite(InspIRCd* Instance) : ServerInstance(Instance)
bool TestSuite::DoThreadTests()
{
+ std::string anything;
+ cout << "Creating new ThreadEngine class...\n";
+ try
+ {
+ ThreadEngineFactory* tef = new ThreadEngineFactory();
+ ThreadEngine* te = tef->Create(ServerInstance);
+ delete tef;
+ }
+ catch (...)
+ {
+ cout << "Creation failed, test failure.\n";
+ return false;
+ }
+ cout << "Creation success!\n";
+
+ cout << "Creating new thread of type TestSuiteThread\n";
+
+ TestSuiteThread* tst = new TestSuiteThread();
+
+ te->Create(tst);
+
+ cout >> "Press enter to end test.";
+ cin >> anything;
+
+ /* Auto frees thread */
+ delete tst;
+
+ delete te;
+
return true;
}