face, mgmt: add channel status dataset publisher
Expose channel maps in protocol factories
Change-Id: I057b1bba638bfc9372867318653d71ba7d0e9888
Refs: #1631, #1653
diff --git a/tests/wscript b/tests/wscript
index ca58e3b..c2cc536 100644
--- a/tests/wscript
+++ b/tests/wscript
@@ -64,7 +64,7 @@
source=bld.path.ant_glob(['daemon/**/*.cpp'],
excl=['daemon/face/ethernet.cpp',
'daemon/face/unix-*.cpp',
- 'daemon/face/websocket-*.cpp']),
+ 'daemon/face/websocket*.cpp']),
use='daemon-objects unit-tests-base unit-tests-main',
includes='.',
install_path=None,
@@ -77,14 +77,14 @@
unit_tests_nfd.source += bld.path.ant_glob('daemon/face/unix-*.cpp')
if bld.env['HAVE_WEBSOCKET']:
- unit_tests_nfd.source += bld.path.ant_glob('daemon/face/websocket-*.cpp')
+ unit_tests_nfd.source += bld.path.ant_glob('daemon/face/websocket*.cpp')
unit_tests_rib = bld.program(
target='../unit-tests-rib',
features='cxx cxxprogram',
source=bld.path.ant_glob(['rib/**/*.cpp']),
use='rib-objects unit-tests-base unit-tests-main',
- includes=['.'],
+ includes='.',
install_path=None,
)