Alexander Afanasyev | 613e2a9 | 2014-04-15 13:36:58 -0700 | [diff] [blame] | 1 | # -*- Mode: python; py-indent-offset: 4; indent-tabs-mode: nil; coding: utf-8; -*- |
Alexander Afanasyev | 613e2a9 | 2014-04-15 13:36:58 -0700 | [diff] [blame] | 2 | """ |
Davide Pesavento | 0064c1d | 2018-03-03 18:43:53 -0500 | [diff] [blame] | 3 | Copyright (c) 2014-2018, Regents of the University of California, |
Junxiao Shi | 9f5b01d | 2016-08-05 03:54:28 +0000 | [diff] [blame] | 4 | Arizona Board of Regents, |
| 5 | Colorado State University, |
| 6 | University Pierre & Marie Curie, Sorbonne University, |
| 7 | Washington University in St. Louis, |
| 8 | Beijing Institute of Technology, |
| 9 | The University of Memphis. |
Alexander Afanasyev | 613e2a9 | 2014-04-15 13:36:58 -0700 | [diff] [blame] | 10 | |
| 11 | This file is part of NFD (Named Data Networking Forwarding Daemon). |
| 12 | See AUTHORS.md for complete list of NFD authors and contributors. |
| 13 | |
| 14 | NFD is free software: you can redistribute it and/or modify it under the terms |
| 15 | of the GNU General Public License as published by the Free Software Foundation, |
| 16 | either version 3 of the License, or (at your option) any later version. |
| 17 | |
| 18 | NFD is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; |
| 19 | without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR |
| 20 | PURPOSE. See the GNU General Public License for more details. |
| 21 | |
| 22 | You should have received a copy of the GNU General Public License along with |
| 23 | NFD, e.g., in COPYING.md file. If not, see <http://www.gnu.org/licenses/>. |
| 24 | """ |
| 25 | |
| 26 | top = '..' |
| 27 | |
| 28 | def build(bld): |
| 29 | # Unit tests |
Davide Pesavento | 0064c1d | 2018-03-03 18:43:53 -0500 | [diff] [blame] | 30 | if bld.env.WITH_TESTS: |
| 31 | config_path = 'UNIT_TEST_CONFIG_PATH="%s"' % bld.bldnode.make_node('tmp-files') |
Alexander Afanasyev | 58ea458 | 2014-05-30 08:38:56 +0300 | [diff] [blame] | 32 | |
Davide Pesavento | 0064c1d | 2018-03-03 18:43:53 -0500 | [diff] [blame] | 33 | # common test objects |
| 34 | bld.objects( |
Alexander Afanasyev | 58ea458 | 2014-05-30 08:38:56 +0300 | [diff] [blame] | 35 | target='unit-tests-base', |
Davide Pesavento | 0064c1d | 2018-03-03 18:43:53 -0500 | [diff] [blame] | 36 | features='pch', |
| 37 | source=bld.path.ant_glob('*.cpp', excl='main.cpp'), |
Alexander Afanasyev | 58ea458 | 2014-05-30 08:38:56 +0300 | [diff] [blame] | 38 | use='core-objects', |
Junxiao Shi | 9f5b01d | 2016-08-05 03:54:28 +0000 | [diff] [blame] | 39 | headers='../core/common.hpp boost-test.hpp', |
Davide Pesavento | 0064c1d | 2018-03-03 18:43:53 -0500 | [diff] [blame] | 40 | defines=[config_path]) |
Alexander Afanasyev | 613e2a9 | 2014-04-15 13:36:58 -0700 | [diff] [blame] | 41 | |
Junxiao Shi | 38f4ce9 | 2016-08-04 10:01:52 +0000 | [diff] [blame] | 42 | for module, name in {"core": "Core Tests", |
| 43 | "daemon": "Daemon Tests", |
| 44 | "rib": "RIB Tests", |
| 45 | "tools": "Tools Tests"}.items(): |
Davide Pesavento | 0064c1d | 2018-03-03 18:43:53 -0500 | [diff] [blame] | 46 | # main() for the module |
| 47 | bld.objects(target='unit-tests-%s-main' % module, |
| 48 | source='main.cpp', |
| 49 | use='BOOST', |
| 50 | defines=['BOOST_TEST_MODULE=%s' % name]) |
| 51 | |
| 52 | node = bld.path.find_dir(module) |
| 53 | src = node.ant_glob('**/*.cpp', excl=['face/*ethernet*.cpp', |
| 54 | 'face/pcap*.cpp', |
| 55 | 'face/unix*.cpp', |
| 56 | 'face/websocket*.cpp']) |
| 57 | if bld.env.HAVE_LIBPCAP: |
| 58 | src += node.ant_glob('face/*ethernet*.cpp') |
| 59 | src += node.ant_glob('face/pcap*.cpp') |
| 60 | if bld.env.HAVE_UNIX_SOCKETS: |
| 61 | src += node.ant_glob('face/unix*.cpp') |
| 62 | if bld.env.HAVE_WEBSOCKET: |
| 63 | src += node.ant_glob('face/websocket*.cpp') |
Alexander Afanasyev | 613e2a9 | 2014-04-15 13:36:58 -0700 | [diff] [blame] | 64 | |
Alexander Afanasyev | f22ebaf | 2015-12-17 21:23:05 -0800 | [diff] [blame] | 65 | # unit-tests-%module |
Teng Liang | 39465c2 | 2018-11-12 19:43:04 -0700 | [diff] [blame] | 66 | if module == "daemon": |
| 67 | bld.program(name='unit-tests-%s' % module, |
| 68 | target='../unit-tests-%s' % module, |
| 69 | source=src, |
| 70 | use='%s-objects rib-objects unit-tests-base unit-tests-%s-main' % (module, module), |
| 71 | defines=[config_path], |
| 72 | install_path=None) |
| 73 | else: |
| 74 | bld.program(name='unit-tests-%s' % module, |
| 75 | target='../unit-tests-%s' % module, |
| 76 | source=src, |
| 77 | use='%s-objects unit-tests-base unit-tests-%s-main' % (module, module), |
| 78 | defines=[config_path], |
| 79 | install_path=None) |
Alexander Afanasyev | 613e2a9 | 2014-04-15 13:36:58 -0700 | [diff] [blame] | 80 | |
Davide Pesavento | 0064c1d | 2018-03-03 18:43:53 -0500 | [diff] [blame] | 81 | # Other tests (e.g., stress tests and benchmarks that can be enabled even if unit tests are disabled) |
| 82 | if bld.env.WITH_TESTS or bld.env.WITH_OTHER_TESTS: |
| 83 | bld.recurse('other') |