test/Makefile.am
changeset 101 70f3967ca6eb
parent 99 dbaa96cc1013
child 106 9ba2d265e191
     1.1 --- a/test/Makefile.am	Tue Mar 18 16:45:21 2008 +0100
     1.2 +++ b/test/Makefile.am	Thu Mar 20 12:12:24 2008 +0000
     1.3 @@ -3,26 +3,34 @@
     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          test/maps_test \
    1.18          test/random_test \
    1.19 +        test/path_test \
    1.20          test/test_tools_fail \
    1.21          test/test_tools_pass
    1.22  
    1.23  TESTS += $(check_PROGRAMS)
    1.24  XFAIL_TESTS += test/test_tools_fail$(EXEEXT)
    1.25  
    1.26 +test_bfs_test_SOURCES = test/bfs_test.cc
    1.27 +test_dfs_test_SOURCES = test/dfs_test.cc
    1.28  test_digraph_test_SOURCES = test/digraph_test.cc
    1.29  test_dim_test_SOURCES = test/dim_test.cc
    1.30  #test_error_test_SOURCES = test/error_test.cc
    1.31  test_graph_test_SOURCES = test/graph_test.cc
    1.32 +# test_heap_test_SOURCES = test/heap_test.cc
    1.33  test_maps_test_SOURCES = test/maps_test.cc
    1.34 +test_path_test_SOURCES = test/path_test.cc
    1.35  test_random_test_SOURCES = test/random_test.cc
    1.36  test_test_tools_fail_SOURCES = test/test_tools_fail.cc
    1.37  test_test_tools_pass_SOURCES = test/test_tools_pass.cc