test/Makefile.am
changeset 100 4f754b4cf82b
parent 99 dbaa96cc1013
child 106 9ba2d265e191
     1.1 --- a/test/Makefile.am	Thu Feb 07 21:28:39 2008 +0000
     1.2 +++ b/test/Makefile.am	Thu Feb 07 21:37:07 2008 +0000
     1.3 @@ -3,10 +3,13 @@
     1.4  
     1.5  noinst_HEADERS += \
     1.6  	test/digraph_test.h \
     1.7 +	test/heap_test.h \
     1.8  	test/map_test.h \
     1.9          test/test_tools.h
    1.10  
    1.11  check_PROGRAMS += \
    1.12 +	test/bfs_test \
    1.13 +	test/dfs_test \
    1.14  	test/digraph_test \
    1.15          test/dim_test \
    1.16  	test/graph_test \
    1.17 @@ -19,10 +22,13 @@
    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_dfs_test_SOURCES = test/dfs_test.cc
    1.23  test_digraph_test_SOURCES = test/digraph_test.cc
    1.24  test_dim_test_SOURCES = test/dim_test.cc
    1.25  #test_error_test_SOURCES = test/error_test.cc
    1.26  test_graph_test_SOURCES = test/graph_test.cc
    1.27 +# test_heap_test_SOURCES = test/heap_test.cc
    1.28  test_maps_test_SOURCES = test/maps_test.cc
    1.29  test_path_test_SOURCES = test/path_test.cc
    1.30  test_random_test_SOURCES = test/random_test.cc