Integrate BString tests

git-svn-id: file:///srv/svn/repos/haiku/trunk/current@1235 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Stefano Ceccherini 2002-09-28 07:23:14 +00:00
parent ed1b028fd8
commit f4c91e72e3
2 changed files with 9 additions and 2 deletions

View File

@ -5,7 +5,7 @@ SEARCH_SOURCE += [ FDirName $(SUBDIR) barchivable ] ;
SEARCH_SOURCE += [ FDirName $(SUBDIR) bautolock ] ;
SEARCH_SOURCE += [ FDirName $(SUBDIR) blocker ] ;
SEARCH_SOURCE += [ FDirName $(SUBDIR) bmemoryio ] ;
SEARCH_SOURCE += [ FDirName $(SUBDIR) bmallocio ] ;
SEARCH_SOURCE += [ FDirName $(SUBDIR) bstring ] ;
CommonTestLib libsupporttest.so
: SupportKitTestAddon.cpp
@ -50,6 +50,11 @@ CommonTestLib libsupporttest.so
#MallocSetSizeTest.cpp
MallocBufferLengthTest.cpp
#BString
StringTest.cpp
StringConstructionTest.cpp
StringCountCharTest.cpp
: <boot!home!config!lib>libopenbeos.so
be stdc++.r4
: be stdc++.r4

View File

@ -7,6 +7,7 @@
#include "blocker/LockerTest.h"
#include "bmemoryio/MemoryIOTest.h"
#include "bmemoryio/MallocIOTest.h"
#include "bstring/StringTest.h"
BTestSuite* getTestSuite() {
BTestSuite *suite = new BTestSuite("Support");
@ -17,6 +18,7 @@ BTestSuite* getTestSuite() {
suite->addTest("BLocker", LockerTestSuite());
suite->addTest("BMemoryIO", MemoryIOTestSuite());
suite->addTest("BMallocIO", MallocIOTestSuite());
suite->addTest("BString", StringTestSuite());
return suite;
}