1.1 --- a/test/Makefile.am Tue Apr 08 22:51:26 2008 +0200
1.2 +++ b/test/Makefile.am Sat Apr 12 20:38:51 2008 +0100
1.3 @@ -9,6 +9,7 @@
1.4
1.5 check_PROGRAMS += \
1.6 test/bfs_test \
1.7 + test/counter_test \
1.8 test/dfs_test \
1.9 test/digraph_test \
1.10 test/dim_test \
1.11 @@ -20,12 +21,14 @@
1.12 test/path_test \
1.13 test/test_tools_fail \
1.14 test/test_tools_pass \
1.15 + test/time_measure_test \
1.16 test/unionfind_test
1.17
1.18 TESTS += $(check_PROGRAMS)
1.19 XFAIL_TESTS += test/test_tools_fail$(EXEEXT)
1.20
1.21 test_bfs_test_SOURCES = test/bfs_test.cc
1.22 +test_counter_test_SOURCES = test/counter_test.cc
1.23 test_dfs_test_SOURCES = test/dfs_test.cc
1.24 test_digraph_test_SOURCES = test/digraph_test.cc
1.25 test_dim_test_SOURCES = test/dim_test.cc
1.26 @@ -38,4 +41,5 @@
1.27 test_random_test_SOURCES = test/random_test.cc
1.28 test_test_tools_fail_SOURCES = test/test_tools_fail.cc
1.29 test_test_tools_pass_SOURCES = test/test_tools_pass.cc
1.30 +test_time_measure_test_SOURCES = test/time_measure_test.cc
1.31 test_unionfind_test_SOURCES = test/unionfind_test.cc