tree: 71a8f6909de0b0c843764ac43e465e3e2ded6b94 [path history] [tgz]
  1. chunks/
  2. dissect-wireshark/
  3. dump/
  4. peek/
  5. ping/
  6. boost-test.hpp
  7. clock-fixture.cpp
  8. clock-fixture.hpp
  9. global-configuration.cpp
  10. io-fixture.hpp
  11. key-chain-fixture.cpp
  12. key-chain-fixture.hpp
  13. main.cpp
  14. README.md
  15. test-case.t.cpp.sample
  16. test-common.cpp
  17. test-common.hpp
  18. wscript
tests/README.md

ndn-tools unit tests

Assumptions

Unit tests for a tool foo should be placed in the folder foo and the build script for the tool should define foo-objects that includes all object files for that tool, except the object that contains the 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')