Integrate BString tests
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@1235 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
@@ -5,7 +5,7 @@ SEARCH_SOURCE += [ FDirName $(SUBDIR) barchivable ] ;
|
|||||||
SEARCH_SOURCE += [ FDirName $(SUBDIR) bautolock ] ;
|
SEARCH_SOURCE += [ FDirName $(SUBDIR) bautolock ] ;
|
||||||
SEARCH_SOURCE += [ FDirName $(SUBDIR) blocker ] ;
|
SEARCH_SOURCE += [ FDirName $(SUBDIR) blocker ] ;
|
||||||
SEARCH_SOURCE += [ FDirName $(SUBDIR) bmemoryio ] ;
|
SEARCH_SOURCE += [ FDirName $(SUBDIR) bmemoryio ] ;
|
||||||
SEARCH_SOURCE += [ FDirName $(SUBDIR) bmallocio ] ;
|
SEARCH_SOURCE += [ FDirName $(SUBDIR) bstring ] ;
|
||||||
|
|
||||||
CommonTestLib libsupporttest.so
|
CommonTestLib libsupporttest.so
|
||||||
: SupportKitTestAddon.cpp
|
: SupportKitTestAddon.cpp
|
||||||
@@ -50,6 +50,11 @@ CommonTestLib libsupporttest.so
|
|||||||
#MallocSetSizeTest.cpp
|
#MallocSetSizeTest.cpp
|
||||||
MallocBufferLengthTest.cpp
|
MallocBufferLengthTest.cpp
|
||||||
|
|
||||||
|
#BString
|
||||||
|
StringTest.cpp
|
||||||
|
StringConstructionTest.cpp
|
||||||
|
StringCountCharTest.cpp
|
||||||
|
|
||||||
: <boot!home!config!lib>libopenbeos.so
|
: <boot!home!config!lib>libopenbeos.so
|
||||||
be stdc++.r4
|
be stdc++.r4
|
||||||
: be stdc++.r4
|
: be stdc++.r4
|
||||||
|
|||||||
@@ -7,6 +7,7 @@
|
|||||||
#include "blocker/LockerTest.h"
|
#include "blocker/LockerTest.h"
|
||||||
#include "bmemoryio/MemoryIOTest.h"
|
#include "bmemoryio/MemoryIOTest.h"
|
||||||
#include "bmemoryio/MallocIOTest.h"
|
#include "bmemoryio/MallocIOTest.h"
|
||||||
|
#include "bstring/StringTest.h"
|
||||||
|
|
||||||
BTestSuite* getTestSuite() {
|
BTestSuite* getTestSuite() {
|
||||||
BTestSuite *suite = new BTestSuite("Support");
|
BTestSuite *suite = new BTestSuite("Support");
|
||||||
@@ -17,6 +18,7 @@ BTestSuite* getTestSuite() {
|
|||||||
suite->addTest("BLocker", LockerTestSuite());
|
suite->addTest("BLocker", LockerTestSuite());
|
||||||
suite->addTest("BMemoryIO", MemoryIOTestSuite());
|
suite->addTest("BMemoryIO", MemoryIOTestSuite());
|
||||||
suite->addTest("BMallocIO", MallocIOTestSuite());
|
suite->addTest("BMallocIO", MallocIOTestSuite());
|
||||||
|
suite->addTest("BString", StringTestSuite());
|
||||||
|
|
||||||
return suite;
|
return suite;
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user