testsuite/pf01: Add test that links PF.

This commit is contained in:
Christian Mauderer
2016-06-27 14:29:53 +02:00
parent 8dacfe492e
commit a9bd4224e8
4 changed files with 67 additions and 0 deletions

View File

@@ -1377,6 +1377,16 @@ def build(bld):
lib = ["m", "z"],
install_path = None)
test_pf01 = ['testsuite/pf01/test_main.c']
bld.program(target = "pf01.exe",
features = "cprogram",
cflags = cflags,
includes = includes,
source = test_pf01,
use = ["bsd"],
lib = ["m", "z"],
install_path = None)
test_ping01 = ['testsuite/ping01/test_main.c']
bld.program(target = "ping01.exe",
features = "cprogram",