First tests for BMemoryIO
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@1176 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
@@ -4,6 +4,7 @@ SubDir OBOS_TOP src tests kits support ;
|
|||||||
SEARCH_SOURCE += [ FDirName $(SUBDIR) barchivable ] ;
|
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 ] ;
|
||||||
|
|
||||||
CommonTestLib libsupporttest.so
|
CommonTestLib libsupporttest.so
|
||||||
: SupportKitTestAddon.cpp
|
: SupportKitTestAddon.cpp
|
||||||
@@ -31,6 +32,12 @@ CommonTestLib libsupporttest.so
|
|||||||
DestructionTest2.cpp
|
DestructionTest2.cpp
|
||||||
LockerTestCase.cpp
|
LockerTestCase.cpp
|
||||||
SemaphoreLockCountTest1.cpp
|
SemaphoreLockCountTest1.cpp
|
||||||
|
|
||||||
|
# BMemoryIO
|
||||||
|
MemoryIOTest.cpp
|
||||||
|
ConstTest.cpp
|
||||||
|
SeekTest.cpp
|
||||||
|
WriteTest.cpp
|
||||||
|
|
||||||
: <boot!home!config!lib>libopenbeos.so
|
: <boot!home!config!lib>libopenbeos.so
|
||||||
be stdc++.r4
|
be stdc++.r4
|
||||||
|
|||||||
@@ -5,6 +5,7 @@
|
|||||||
#include "barchivable/ArchivableTest.h"
|
#include "barchivable/ArchivableTest.h"
|
||||||
#include "bautolock/AutolockTest.h"
|
#include "bautolock/AutolockTest.h"
|
||||||
#include "blocker/LockerTest.h"
|
#include "blocker/LockerTest.h"
|
||||||
|
#include "bmemoryio/MemoryIOTest.h"
|
||||||
|
|
||||||
BTestSuite* getTestSuite() {
|
BTestSuite* getTestSuite() {
|
||||||
BTestSuite *suite = new BTestSuite("Support");
|
BTestSuite *suite = new BTestSuite("Support");
|
||||||
@@ -13,6 +14,7 @@ BTestSuite* getTestSuite() {
|
|||||||
suite->addTest("BArchivable", ArchivableTestSuite());
|
suite->addTest("BArchivable", ArchivableTestSuite());
|
||||||
suite->addTest("BAutolock", AutolockTestSuite());
|
suite->addTest("BAutolock", AutolockTestSuite());
|
||||||
suite->addTest("BLocker", LockerTestSuite());
|
suite->addTest("BLocker", LockerTestSuite());
|
||||||
|
suite->addTest("BMemoryIO", MemoryIOTestSuite());
|
||||||
|
|
||||||
return suite;
|
return suite;
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user