test/Makefile.am
changeset 783 ef88c0a30f85
parent 763 93cd93e82f9b
parent 698 f9746e45246e
child 793 7c0ad6bd6a63
     1.1 --- a/test/Makefile.am	Mon Jan 12 23:11:39 2009 +0100
     1.2 +++ b/test/Makefile.am	Thu Nov 05 15:48:01 2009 +0100
     1.3 @@ -7,8 +7,10 @@
     1.4  
     1.5  check_PROGRAMS += \
     1.6  	test/adaptors_test \
     1.7 +	test/bellman_ford_test \
     1.8  	test/bfs_test \
     1.9  	test/circulation_test \
    1.10 +	test/connectivity_test \
    1.11  	test/counter_test \
    1.12  	test/dfs_test \
    1.13  	test/digraph_test \
    1.14 @@ -16,6 +18,8 @@
    1.15  	test/dim_test \
    1.16  	test/edge_set_test \
    1.17  	test/error_test \
    1.18 +	test/euler_test \
    1.19 +	test/gomory_hu_test \
    1.20  	test/graph_copy_test \
    1.21  	test/graph_test \
    1.22  	test/graph_utils_test \
    1.23 @@ -23,7 +27,10 @@
    1.24  	test/heap_test \
    1.25  	test/kruskal_test \
    1.26  	test/maps_test \
    1.27 -	test/max_matching_test \
    1.28 +	test/matching_test \
    1.29 +	test/min_cost_arborescence_test \
    1.30 +	test/min_cost_flow_test \
    1.31 +	test/min_mean_cycle_test \
    1.32  	test/path_test \
    1.33  	test/preflow_test \
    1.34  	test/radix_sort_test \
    1.35 @@ -34,6 +41,8 @@
    1.36  	test/time_measure_test \
    1.37  	test/unionfind_test
    1.38  
    1.39 +test_test_tools_pass_DEPENDENCIES = demo
    1.40 +
    1.41  if HAVE_LP
    1.42  check_PROGRAMS += test/lp_test
    1.43  endif HAVE_LP
    1.44 @@ -45,15 +54,19 @@
    1.45  XFAIL_TESTS += test/test_tools_fail$(EXEEXT)
    1.46  
    1.47  test_adaptors_test_SOURCES = test/adaptors_test.cc
    1.48 +test_bellman_ford_test_SOURCES = test/bellman_ford_test.cc
    1.49  test_bfs_test_SOURCES = test/bfs_test.cc
    1.50  test_circulation_test_SOURCES = test/circulation_test.cc
    1.51  test_counter_test_SOURCES = test/counter_test.cc
    1.52 +test_connectivity_test_SOURCES = test/connectivity_test.cc
    1.53  test_dfs_test_SOURCES = test/dfs_test.cc
    1.54  test_digraph_test_SOURCES = test/digraph_test.cc
    1.55  test_dijkstra_test_SOURCES = test/dijkstra_test.cc
    1.56  test_dim_test_SOURCES = test/dim_test.cc
    1.57  test_edge_set_test_SOURCES = test/edge_set_test.cc
    1.58  test_error_test_SOURCES = test/error_test.cc
    1.59 +test_euler_test_SOURCES = test/euler_test.cc
    1.60 +test_gomory_hu_test_SOURCES = test/gomory_hu_test.cc
    1.61  test_graph_copy_test_SOURCES = test/graph_copy_test.cc
    1.62  test_graph_test_SOURCES = test/graph_test.cc
    1.63  test_graph_utils_test_SOURCES = test/graph_utils_test.cc
    1.64 @@ -63,7 +76,10 @@
    1.65  test_lp_test_SOURCES = test/lp_test.cc
    1.66  test_maps_test_SOURCES = test/maps_test.cc
    1.67  test_mip_test_SOURCES = test/mip_test.cc
    1.68 -test_max_matching_test_SOURCES = test/max_matching_test.cc
    1.69 +test_matching_test_SOURCES = test/matching_test.cc
    1.70 +test_min_cost_arborescence_test_SOURCES = test/min_cost_arborescence_test.cc
    1.71 +test_min_cost_flow_test_SOURCES = test/min_cost_flow_test.cc
    1.72 +test_min_mean_cycle_test_SOURCES = test/min_mean_cycle_test.cc
    1.73  test_path_test_SOURCES = test/path_test.cc
    1.74  test_preflow_test_SOURCES = test/preflow_test.cc
    1.75  test_radix_sort_test_SOURCES = test/radix_sort_test.cc