tree: d5b83815c3b67814651b3ed347b9fedd945bed38 [path history] [tgz]
  1. pib/
  2. ping/
  3. boost-test.hpp
  4. main.cpp
  5. README.md
  6. test-case.t.cpp.sample
  7. test-common.hpp
  8. wscript
tests/README.md

ndn-tool unit tests

Assumptions

Unit tests for a tool foo should be placed in the folder foo and build script for the tool should define foo-objects that includes all object files for the tool, except object files defining main function.

For example,

bld(features='cxx',
    name='tool-subtool-objects',
    source=bld.path.ant_glob('subtool/*.cpp', excl='subtool/main.cpp'),
    use='core-objects')

bld(features='cxx cxxprogram',
    target='../../bin/subtool',
    source='subtool/main.cpp',
    use='tool-subtool-objects')

bld(name='tool-objects',
    use='tool-subtool-objects')