diff options
author | Christian Franke <chris@opensourcerouting.org> | 2013-07-05 18:30:57 +0200 |
---|---|---|
committer | Greg Troxel <gdt@ir.bbn.com> | 2013-07-15 14:50:38 +0200 |
commit | d77102025a30eef274e8d343bfec75f87899a417 (patch) | |
tree | 183d4001ebbee78399876e85ba2e6bc0d8ce6be3 /tests | |
parent | tests: fix Makefile.am so it works with BSD make (diff) | |
download | frr-d77102025a30eef274e8d343bfec75f87899a417.tar.xz frr-d77102025a30eef274e8d343bfec75f87899a417.zip |
tests: don't build tests unless make check is run
Use check_PROGRAMS instead of noinst_PROGRAMS in tests/Makefile.am
to build the tests only when make check is actually run.
Signed-off-by: Christian Franke <chris@opensourcerouting.org>
Diffstat (limited to 'tests')
-rw-r--r-- | tests/Makefile.am | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/Makefile.am b/tests/Makefile.am index b7a7fe748..2ed0e1c59 100644 --- a/tests/Makefile.am +++ b/tests/Makefile.am @@ -24,7 +24,7 @@ else TESTS_BGPD = endif -noinst_PROGRAMS = testsig testbuffer testmemory heavy heavywq heavythread \ +check_PROGRAMS = testsig testbuffer testmemory heavy heavywq heavythread \ testprivs teststream testchecksum tabletest \ $(TESTS_BGPD) |