haiku/build/jam/TestsRules
Axel Dörfler 2c69b5b6c0 * Made the libbe_test environment basically working under Haiku - to actually
make it work, one would need to use versioning for all libbe symbols. This is
  worth an 8k price per file that links against libbe.so, so I didn't want to
  commit this as is. An alternative to this solution would be to write a
  separate application that is responsible for the app_server's window. Comments
  welcome.
* Removed BeOS compatbility of the libbe_test stuff.
* Renamed the libbe_test targets from *haiku* to *test*, ie. libbe_haiku.so is
  now called libbe_test.so, haiku_registrar is now test_registrar, etc.
* This also removes BeOS compatibility from tracker/FSUtils.cpp (all BeOS
  compatibility should be removed, but I don't want to make Alexandre more work
  in his branch, and it's not urgent at all).
* Replaced the former "run" scripts for the test environment with a single
  run script (see updated NOTES file).
* Removed the libbe_test target from some applications - this was only to help
  developing them under BeOS, and is thus no longer necessary.


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@32521 a95241bf-73f2-0310-859d-f6bbb57e9c96
2009-08-19 14:17:13 +00:00

112 lines
2.5 KiB
Plaintext

# unit test pseudo target
NotFile unittests ;
rule UnitTestLib
{
# UnitTestLib <lib> : <sources> : <libraries> ;
#
local lib = $(1) ;
local sources = $(2) ;
local libraries = $(3) ;
# if TEST_DEBUG is defined, we turn on debugging
if $(TEST_DEBUG) {
DEBUG on $(lib) [ FGristFiles $(sources:S=$(SUFOBJ)) ] ?= 1 ;
}
# define TEST_R5/TEST_HAIKU depending on the platform we build for
if $(TARGET_PLATFORM) = libbe_test {
ObjectDefines $(2) : TEST_HAIKU TEST_OBOS ;
# make the target depend on the installed libbe libraries
Depends $(lib) :
<tests!unittests>libbe_test.so ;
} else {
ObjectDefines $(2) : TEST_R5 ;
}
UseCppUnitObjectHeaders $(sources) ;
MakeLocate $(lib) : $(TARGET_UNIT_TEST_LIB_DIR) ;
SharedLibrary $(lib) : $(sources) : $(libraries) libcppunit.so ;
Depends unittests : $(lib) ;
}
rule UnitTest
{
# UnitTest <target> : <sources> : <libraries> : <resources> ;
#
local target = $(1) ;
local sources = $(2) ;
local libraries = $(3) ;
local resources = $(4) ;
# define TEST_R5/TEST_HAIKU depending on the platform we build for
if $(TARGET_PLATFORM) = libbe_test {
ObjectDefines $(2) : TEST_HAIKU TEST_OBOS ;
# make the target depend on the installed libbe libraries
Depends $(target) :
<tests!unittests>libbe_test.so ;
} else {
ObjectDefines $(2) : TEST_R5 ;
}
UseCppUnitObjectHeaders $(sources) ;
MakeLocate $(target) : $(TARGET_UNIT_TEST_DIR) ;
SimpleTest $(target) : $(sources) : $(libraries) libcppunit.so
: $(resources) ;
Depends unittests : $(lib) ;
}
rule TestObjects
{
# TestObjects <sources> ;
#
local sources = $(1) ;
# define TEST_R5/TEST_HAIKU depending on the platform we build for
if $(TARGET_PLATFORM) = libbe_test {
ObjectDefines $(2) : TEST_HAIKU TEST_OBOS ;
} else {
ObjectDefines $(2) : TEST_R5 ;
}
UseCppUnitObjectHeaders $(sources) ;
Objects $(sources) ;
}
rule SimpleTest
{
# SimpleTest <target> : <sources> : [ <libraries> ] : [ <resources> ] ;
# if TEST_DEBUG is defined, we turn on debugging
if $(TEST_DEBUG) {
DEBUG on $(1) [ FGristFiles $(2:S=$(SUFOBJ)) ] ?= 1 ;
}
Executable $(1) : $(2) : $(3) : $(4) ;
}
rule BuildPlatformTest
{
# Usage BuildPlatformTest <target> : <sources> ;
local target = $(1) ;
local sources = $(2) ;
local relPath ;
if [ FIsPrefix src tests : $(SUBDIR_TOKENS) ] {
relPath = $(SUBDIR_TOKENS[3-]) ;
} else {
relPath = $(SUBDIR_TOKENS[2-]) ;
}
MakeLocate $(target) : [ FDirName $(HAIKU_TEST_DIR) $(relPath) ] ;
BuildPlatformMain $(target) : $(sources) ;
}