More tests for BMemoryIO and BMallocIO
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@1213 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
parent
210f8dd7cc
commit
8adaaec712
@ -5,6 +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 ] ;
|
||||||
|
|
||||||
CommonTestLib libsupporttest.so
|
CommonTestLib libsupporttest.so
|
||||||
: SupportKitTestAddon.cpp
|
: SupportKitTestAddon.cpp
|
||||||
@ -38,6 +39,16 @@ CommonTestLib libsupporttest.so
|
|||||||
ConstTest.cpp
|
ConstTest.cpp
|
||||||
SeekTest.cpp
|
SeekTest.cpp
|
||||||
WriteTest.cpp
|
WriteTest.cpp
|
||||||
|
ReadTest.cpp
|
||||||
|
SetSizeTest.cpp
|
||||||
|
|
||||||
|
# BMallocIO
|
||||||
|
MallocIOTest.cpp
|
||||||
|
MallocSeekTest.cpp
|
||||||
|
MallocWriteTest.cpp
|
||||||
|
#MallocReadTest.cpp
|
||||||
|
#MallocSetSizeTest.cpp
|
||||||
|
MallocBufferLengthTest.cpp
|
||||||
|
|
||||||
: <boot!home!config!lib>libopenbeos.so
|
: <boot!home!config!lib>libopenbeos.so
|
||||||
be stdc++.r4
|
be stdc++.r4
|
||||||
|
@ -6,6 +6,7 @@
|
|||||||
#include "bautolock/AutolockTest.h"
|
#include "bautolock/AutolockTest.h"
|
||||||
#include "blocker/LockerTest.h"
|
#include "blocker/LockerTest.h"
|
||||||
#include "bmemoryio/MemoryIOTest.h"
|
#include "bmemoryio/MemoryIOTest.h"
|
||||||
|
#include "bmallocio/MallocIOTest.h"
|
||||||
|
|
||||||
BTestSuite* getTestSuite() {
|
BTestSuite* getTestSuite() {
|
||||||
BTestSuite *suite = new BTestSuite("Support");
|
BTestSuite *suite = new BTestSuite("Support");
|
||||||
@ -15,6 +16,7 @@ BTestSuite* getTestSuite() {
|
|||||||
suite->addTest("BAutolock", AutolockTestSuite());
|
suite->addTest("BAutolock", AutolockTestSuite());
|
||||||
suite->addTest("BLocker", LockerTestSuite());
|
suite->addTest("BLocker", LockerTestSuite());
|
||||||
suite->addTest("BMemoryIO", MemoryIOTestSuite());
|
suite->addTest("BMemoryIO", MemoryIOTestSuite());
|
||||||
|
suite->addTest("BMallocIO", MallocIOTestSuite());
|
||||||
|
|
||||||
return suite;
|
return suite;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user