test/Makefile.am
changeset 106 9ba2d265e191
parent 100 4f754b4cf82b
parent 103 b68a7e348e00
child 108 889d0c289d19
     1.1 --- a/test/Makefile.am	Thu Mar 20 21:59:35 2008 +0000
     1.2 +++ b/test/Makefile.am	Thu Mar 20 23:06:35 2008 +0000
     1.3 @@ -13,11 +13,13 @@
     1.4  	test/digraph_test \
     1.5          test/dim_test \
     1.6  	test/graph_test \
     1.7 +	test/kruskal_test \
     1.8          test/maps_test \
     1.9          test/random_test \
    1.10          test/path_test \
    1.11          test/test_tools_fail \
    1.12 -        test/test_tools_pass
    1.13 +        test/test_tools_pass \
    1.14 +	test/unionfind_test
    1.15  
    1.16  TESTS += $(check_PROGRAMS)
    1.17  XFAIL_TESTS += test/test_tools_fail$(EXEEXT)
    1.18 @@ -29,8 +31,10 @@
    1.19  #test_error_test_SOURCES = test/error_test.cc
    1.20  test_graph_test_SOURCES = test/graph_test.cc
    1.21  # test_heap_test_SOURCES = test/heap_test.cc
    1.22 +test_kruskal_test_SOURCES = test/kruskal_test.cc
    1.23  test_maps_test_SOURCES = test/maps_test.cc
    1.24  test_path_test_SOURCES = test/path_test.cc
    1.25  test_random_test_SOURCES = test/random_test.cc
    1.26  test_test_tools_fail_SOURCES = test/test_tools_fail.cc
    1.27  test_test_tools_pass_SOURCES = test/test_tools_pass.cc
    1.28 +test_unionfind_test_SOURCES = test/unionfind_test.cc