src/test/Makefile.am
changeset 774 4297098d9677
parent 727 aada518af30f
child 780 e06d0d16595f
     1.1 --- a/src/test/Makefile.am	Wed Aug 25 18:55:57 2004 +0000
     1.2 +++ b/src/test/Makefile.am	Mon Aug 30 12:01:47 2004 +0000
     1.3 @@ -2,14 +2,17 @@
     1.4  
     1.5  noinst_HEADERS = test_tools.h
     1.6  
     1.7 -check_PROGRAMS = graph_test dijkstra_test time_measure_test error_test xy_test \
     1.8 -	test_tools_pass test_tools_fail
     1.9 +check_PROGRAMS = graph_test dijkstra_test bfs_test time_measure_test \
    1.10 +	error_test xy_test \
    1.11 +	unionfind_test test_tools_pass test_tools_fail
    1.12  
    1.13  TESTS = $(check_PROGRAMS)
    1.14  XFAIL_TESTS = test_tools_fail
    1.15  
    1.16  graph_test_SOURCES = graph_test.cc
    1.17  dijkstra_test_SOURCES = dijkstra_test.cc
    1.18 +bfs_test_SOURCES = bfs_test.cc
    1.19 +unionfind_test_SOURCES = unionfind_test.cc
    1.20  time_measure_test_SOURCES = time_measure_test.cc
    1.21  error_test_SOURCES = error_test.cc
    1.22  xy_test_SOURCES = xy_test.cc