testsuite/cdev01: Add test for cdev functions.

This commit is contained in:
Christian Mauderer
2016-06-28 15:13:09 +02:00
committed by Sebastian Huber
parent be3aa09d95
commit 1229ace609
5 changed files with 364 additions and 0 deletions

11
wscript
View File

@@ -1250,6 +1250,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",
features = "cprogram",
cflags = cflags,
includes = includes,
source = test_cdev01,
use = ["bsd"],
lib = ["m", "z"],
install_path = None)
test_vlan01 = ['testsuite/vlan01/test_main.c']
bld.program(target = "vlan01",
features = "cprogram",