testsuite/cdev01: Add test for cdev functions.

This commit is contained in:
Christian Mauderer
2016-06-28 15:13:09 +02:00
parent 9a01ebf7d7
commit 8dacfe492e
5 changed files with 364 additions and 0 deletions

View File

@@ -1205,6 +1205,17 @@ def build(bld):
lib = ["m", "z"],
install_path = None)
test_cdev01 = ['testsuite/cdev01/test_cdev.c',
'testsuite/cdev01/test_main.c']
bld.program(target = "cdev01.exe",
features = "cprogram",
cflags = cflags,
includes = includes,
source = test_cdev01,
use = ["bsd"],
lib = ["m", "z"],
install_path = None)
test_commands01 = ['testsuite/commands01/test_main.c']
bld.program(target = "commands01.exe",
features = "cprogram",