Add a services base test.

This commit is contained in:
Chris Johns
2016-06-27 13:25:48 +10:00
parent 55c564a028
commit 7439724ac3
3 changed files with 236 additions and 58 deletions

View File

@@ -1389,6 +1389,16 @@ def build(bld):
lib = ["m", "z"],
install_path = None)
test_rcconf02 = ['testsuite/rcconf02/test_main.c']
bld.program(target = "rcconf02.exe",
features = "cprogram",
cflags = cflags,
includes = includes,
source = test_rcconf02,
use = ["bsd"],
lib = ["m", "z"],
install_path = None)
test_rwlock01 = ['testsuite/rwlock01/test_main.c']
bld.program(target = "rwlock01.exe",
features = "cprogram",