summaryrefslogtreecommitdiffstats
path: root/tests/Makefile.am
diff options
context:
space:
mode:
authorChristian Franke <chris@opensourcerouting.org>2013-11-19 15:11:40 +0100
committerDavid Lamparter <equinox@opensourcerouting.org>2014-04-22 21:15:11 +0200
commitba32db1e854ff2b26861a2d4e4193a9f1b3816cd (patch)
treeac1e4d87ad17a4ae653576009800b4077c4db00f /tests/Makefile.am
parentospfd/ospf_vty.c: use keyword cmd style (diff)
downloadfrr-ba32db1e854ff2b26861a2d4e4193a9f1b3816cd.tar.xz
frr-ba32db1e854ff2b26861a2d4e4193a9f1b3816cd.zip
tests: Add tests for timers
Signed-off-by: Christian Franke <chris@opensourcerouting.org> Signed-off-by: David Lamparter <equinox@opensourcerouting.org>
Diffstat (limited to 'tests/Makefile.am')
-rw-r--r--tests/Makefile.am6
1 files changed, 5 insertions, 1 deletions
diff --git a/tests/Makefile.am b/tests/Makefile.am
index 8707fe7d9..8a086d0b6 100644
--- a/tests/Makefile.am
+++ b/tests/Makefile.am
@@ -28,7 +28,7 @@ endif
check_PROGRAMS = testsig testsegv testbuffer testmemory heavy heavywq heavythread \
testprivs teststream testchecksum tabletest testnexthopiter \
- testcommands \
+ testcommands test-timer-correctness test-timer-performance \
$(TESTS_BGPD)
../vtysh/vtysh_cmd.c:
@@ -63,6 +63,8 @@ testbgpmpath_SOURCES = bgp_mpath_test.c
tabletest_SOURCES = table_test.c
testnexthopiter_SOURCES = test-nexthop-iter.c prng.c
testcommands_SOURCES = test-commands-defun.c test-commands.c prng.c
+test_timer_correctness_SOURCES = test-timer-correctness.c prng.c
+test_timer_performance_SOURCES = test-timer-performance.c prng.c
testsig_LDADD = ../lib/libzebra.la @LIBCAP@
testsegv_LDADD = ../lib/libzebra.la @LIBCAP@
@@ -82,3 +84,5 @@ testbgpmpath_LDADD = ../bgpd/libbgp.a ../lib/libzebra.la @LIBCAP@ -lm
tabletest_LDADD = ../lib/libzebra.la @LIBCAP@ -lm
testnexthopiter_LDADD = ../lib/libzebra.la @LIBCAP@
testcommands_LDADD = ../lib/libzebra.la @LIBCAP@
+test_timer_correctness_LDADD = ../lib/libzebra.la @LIBCAP@
+test_timer_performance_LDADD = ../lib/libzebra.la @LIBCAP@