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:
Stefano Ceccherini
2002-09-25 15:00:55 +00:00
parent e04fced505
commit 3f541a71c8
2 changed files with 9 additions and 0 deletions
+7
View File
@@ -4,6 +4,7 @@ SubDir OBOS_TOP src tests kits support ;
SEARCH_SOURCE += [ FDirName $(SUBDIR) barchivable ] ;
SEARCH_SOURCE += [ FDirName $(SUBDIR) bautolock ] ;
SEARCH_SOURCE += [ FDirName $(SUBDIR) blocker ] ;
SEARCH_SOURCE += [ FDirName $(SUBDIR) bmemoryio ] ;
CommonTestLib libsupporttest.so
: SupportKitTestAddon.cpp
@@ -31,6 +32,12 @@ CommonTestLib libsupporttest.so
DestructionTest2.cpp
LockerTestCase.cpp
SemaphoreLockCountTest1.cpp
# BMemoryIO
MemoryIOTest.cpp
ConstTest.cpp
SeekTest.cpp
WriteTest.cpp
: <boot!home!config!lib>libopenbeos.so
be stdc++.r4
@@ -5,6 +5,7 @@
#include "barchivable/ArchivableTest.h"
#include "bautolock/AutolockTest.h"
#include "blocker/LockerTest.h"
#include "bmemoryio/MemoryIOTest.h"
BTestSuite* getTestSuite() {
BTestSuite *suite = new BTestSuite("Support");
@@ -13,6 +14,7 @@ BTestSuite* getTestSuite() {
suite->addTest("BArchivable", ArchivableTestSuite());
suite->addTest("BAutolock", AutolockTestSuite());
suite->addTest("BLocker", LockerTestSuite());
suite->addTest("BMemoryIO", MemoryIOTestSuite());
return suite;
}