Modifications to bring BMessage tests into effect.

git-svn-id: file:///srv/svn/repos/haiku/trunk/current@2951 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
ejakowatz
2003-03-19 04:26:00 +00:00
parent be45e9989d
commit 241dab6520
2 changed files with 10 additions and 0 deletions
+2
View File
@@ -7,6 +7,7 @@
#include "bcursor/CursorTest.h" #include "bcursor/CursorTest.h"
#include "bhandler/HandlerTest.h" #include "bhandler/HandlerTest.h"
#include "blooper/LooperTest.h" #include "blooper/LooperTest.h"
#include "bmessage/MessageTest.h"
#include "bmessagequeue/MessageQueueTest.h" #include "bmessagequeue/MessageQueueTest.h"
#include "bmessagerunner/MessageRunnerTest.h" #include "bmessagerunner/MessageRunnerTest.h"
#include "bmessenger/MessengerTest.h" #include "bmessenger/MessengerTest.h"
@@ -23,6 +24,7 @@ BTestSuite* getTestSuite() {
suite->addTest("BCursor", CursorTestSuite()); suite->addTest("BCursor", CursorTestSuite());
suite->addTest("BHandler", HandlerTestSuite()); suite->addTest("BHandler", HandlerTestSuite());
suite->addTest("BLooper", LooperTestSuite()); suite->addTest("BLooper", LooperTestSuite());
suite->addTest("BMessage", MessageTestSuite());
suite->addTest("BMessageQueue", MessageQueueTestSuite()); suite->addTest("BMessageQueue", MessageQueueTestSuite());
suite->addTest("BMessageRunner", MessageRunnerTestSuite()); suite->addTest("BMessageRunner", MessageRunnerTestSuite());
suite->addTest("BMessenger", MessengerTestSuite()); suite->addTest("BMessenger", MessengerTestSuite());
+8
View File
@@ -8,6 +8,7 @@ SEARCH_SOURCE += [ FDirName $(SUBDIR) bclipboard ] ;
SEARCH_SOURCE += [ FDirName $(SUBDIR) bcursor ] ; SEARCH_SOURCE += [ FDirName $(SUBDIR) bcursor ] ;
SEARCH_SOURCE += [ FDirName $(SUBDIR) bhandler ] ; SEARCH_SOURCE += [ FDirName $(SUBDIR) bhandler ] ;
SEARCH_SOURCE += [ FDirName $(SUBDIR) blooper ] ; SEARCH_SOURCE += [ FDirName $(SUBDIR) blooper ] ;
SEARCH_SOURCE += [ FDirName $(SUBDIR) bmessage ] ;
SEARCH_SOURCE += [ FDirName $(SUBDIR) bmessagequeue ] ; SEARCH_SOURCE += [ FDirName $(SUBDIR) bmessagequeue ] ;
SEARCH_SOURCE += [ FDirName $(SUBDIR) bmessagerunner ] ; SEARCH_SOURCE += [ FDirName $(SUBDIR) bmessagerunner ] ;
SEARCH_SOURCE += [ FDirName $(SUBDIR) bmessenger ] ; SEARCH_SOURCE += [ FDirName $(SUBDIR) bmessenger ] ;
@@ -69,6 +70,12 @@ CommonTestLib libapptest.so
SetCommonFilterListTest.cpp SetCommonFilterListTest.cpp
QuitTest.cpp QuitTest.cpp
# BMessage
MessageTest.cpp
MessageConstructTest.cpp
MessageOpAssignTest.cpp
MessageEasyFindTest.cpp
# BMessageQueue # BMessageQueue
MessageQueueTest.cpp MessageQueueTest.cpp
AddMessageTest1.cpp AddMessageTest1.cpp
@@ -140,6 +147,7 @@ SubInclude OBOS_TOP src tests kits app bclipboard ;
SubInclude OBOS_TOP src tests kits app bcursor ; SubInclude OBOS_TOP src tests kits app bcursor ;
#SubInclude OBOS_TOP src tests kits app bhandler ; #SubInclude OBOS_TOP src tests kits app bhandler ;
#SubInclude OBOS_TOP src tests kits app blooper ; #SubInclude OBOS_TOP src tests kits app blooper ;
#SubInclude OBOS_TOP src tests kits app bmessage ;
#SubInclude OBOS_TOP src tests kits app bmessageQueue ; #SubInclude OBOS_TOP src tests kits app bmessageQueue ;
SubInclude OBOS_TOP src tests kits app bmessenger ; SubInclude OBOS_TOP src tests kits app bmessenger ;
SubInclude OBOS_TOP src tests kits app broster ; SubInclude OBOS_TOP src tests kits app broster ;