Utilizes the new BuildPlatformTest rule - added a comment on how to build

this test correctly with the current posix headers.


git-svn-id: file:///srv/svn/repos/haiku/trunk/current@3648 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Axel Dörfler 2003-06-24 22:58:35 +00:00
parent e29d853358
commit cc74989eb6
1 changed files with 6 additions and 2 deletions

View File

@ -1,14 +1,18 @@
SubDir OBOS_TOP src tests kernel boot heap ;
UseHeaders [ PublicHeaders support ] ;
UsePrivateHeaders kernel ;
# this makes the wrong stdio.h header accessible
# current work-around to let the test build
# under the build platform is to remove the
# private/kernel/stdio.h file.
# This will be fixed with the move to GNU's stdio header
SubDirHdrs $(OBOS_TOP) headers private kernel arch $(OBOS_ARCH) ;
SubDirHdrs $(OBOS_TOP) headers private kernel boot platform $(OBOS_BOOT_PLATFORM) ;
ObjectDefines heap.cpp : malloc=heap_malloc free=heap_free ;
BuildPlatformMain heapTest :
BuildPlatformTest heapTest :
heapTest.cpp
heap.cpp