haiku/src/tests/Jamfile
Tyler Dauwalder c5ff4aa6f5 It became apparent that in order to assure obos tests are run
with obos libs and r5 tests are run with r5 libs, two separate
unit testing programs in different directories would be needed.
Thus UnitTester is now just a shell program that calls the
appropriate unittester/UnitTester or unittester_r5/UnitTester_r5
program.


git-svn-id: file:///srv/svn/repos/haiku/trunk/current@703 a95241bf-73f2-0310-859d-f6bbb57e9c96
2002-08-11 03:45:17 +00:00

37 lines
530 B
Plaintext

SubDir OBOS_TOP src tests ;
CommonTestLib libexampletest.so
: ExampleTestAddon.cpp
ExampleTest.cpp
: be stdc++.r4
: be stdc++.r4
:
;
UnitTest UnitTester
: UnitTester.cpp
:
: be stdc++.r4
:
;
UnitTest UnitTesterHelper
: UnitTesterHelper.cpp
: unittester
: be stdc++.r4
: be stdc++.r4
:
;
R5UnitTest UnitTesterHelper
: UnitTesterHelper.cpp
: unittester_r5
: be stdc++.r4
: be stdc++.r4
:
;
SubInclude OBOS_TOP src tests add-ons ;
SubInclude OBOS_TOP src tests kits ;
SubInclude OBOS_TOP src tests servers ;