From: <mik...@us...> - 2003-12-24 13:03:59
|
Update of /cvsroot/sharedaemon/sharedaemon-ui-web/src In directory sc8-pr-cvs1:/tmp/cvs-serv659/src Modified Files: Main.cpp Log Message: 24/12/2003 Barbeaux * Added simple test programs for Exceptions and Threads. * Implemented Semaphore and Thread. Index: Main.cpp =================================================================== RCS file: /cvsroot/sharedaemon/sharedaemon-ui-web/src/Main.cpp,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- Main.cpp 24 Dec 2003 10:49:48 -0000 1.1 +++ Main.cpp 24 Dec 2003 13:03:56 -0000 1.2 @@ -18,13 +18,17 @@ */ #include "test/TestException.h" - +#include "test/TestThread.h" + /** * Main program. */ int main() { - TestException test; - test.run(); + TestException test_excp; + test_excp.test(); + + TestThread test_th; + test_th.test(); return 0; } |