test/Makefile.am
changeset 831 1a7fe3bef514
parent 810 93cd93e82f9b
parent 745 f9746e45246e
child 840 7c0ad6bd6a63
     1.1 --- a/test/Makefile.am	Fri Oct 16 10:21:37 2009 +0200
     1.2 +++ b/test/Makefile.am	Thu Nov 05 15:50:01 2009 +0100
     1.3 @@ -3,46 +3,87 @@
     1.4  
     1.5  noinst_HEADERS += \
     1.6  	test/graph_test.h \
     1.7 -        test/test_tools.h
     1.8 +	test/test_tools.h
     1.9  
    1.10  check_PROGRAMS += \
    1.11 +	test/adaptors_test \
    1.12 +	test/bellman_ford_test \
    1.13  	test/bfs_test \
    1.14 -        test/counter_test \
    1.15 +	test/circulation_test \
    1.16 +	test/connectivity_test \
    1.17 +	test/counter_test \
    1.18  	test/dfs_test \
    1.19  	test/digraph_test \
    1.20  	test/dijkstra_test \
    1.21 -        test/dim_test \
    1.22 +	test/dim_test \
    1.23 +	test/edge_set_test \
    1.24  	test/error_test \
    1.25 +	test/euler_test \
    1.26 +	test/gomory_hu_test \
    1.27  	test/graph_copy_test \
    1.28  	test/graph_test \
    1.29  	test/graph_utils_test \
    1.30 +	test/hao_orlin_test \
    1.31  	test/heap_test \
    1.32  	test/kruskal_test \
    1.33 -        test/maps_test \
    1.34 -        test/random_test \
    1.35 -        test/path_test \
    1.36 -        test/test_tools_fail \
    1.37 -        test/test_tools_pass \
    1.38 -        test/time_measure_test \
    1.39 +	test/maps_test \
    1.40 +	test/matching_test \
    1.41 +	test/min_cost_arborescence_test \
    1.42 +	test/min_cost_flow_test \
    1.43 +	test/min_mean_cycle_test \
    1.44 +	test/path_test \
    1.45 +	test/preflow_test \
    1.46 +	test/radix_sort_test \
    1.47 +	test/random_test \
    1.48 +	test/suurballe_test \
    1.49 +	test/test_tools_fail \
    1.50 +	test/test_tools_pass \
    1.51 +	test/time_measure_test \
    1.52  	test/unionfind_test
    1.53  
    1.54 +test_test_tools_pass_DEPENDENCIES = demo
    1.55 +
    1.56 +if HAVE_LP
    1.57 +check_PROGRAMS += test/lp_test
    1.58 +endif HAVE_LP
    1.59 +if HAVE_MIP
    1.60 +check_PROGRAMS += test/mip_test
    1.61 +endif HAVE_MIP
    1.62 +
    1.63  TESTS += $(check_PROGRAMS)
    1.64  XFAIL_TESTS += test/test_tools_fail$(EXEEXT)
    1.65  
    1.66 +test_adaptors_test_SOURCES = test/adaptors_test.cc
    1.67 +test_bellman_ford_test_SOURCES = test/bellman_ford_test.cc
    1.68  test_bfs_test_SOURCES = test/bfs_test.cc
    1.69 +test_circulation_test_SOURCES = test/circulation_test.cc
    1.70  test_counter_test_SOURCES = test/counter_test.cc
    1.71 +test_connectivity_test_SOURCES = test/connectivity_test.cc
    1.72  test_dfs_test_SOURCES = test/dfs_test.cc
    1.73  test_digraph_test_SOURCES = test/digraph_test.cc
    1.74  test_dijkstra_test_SOURCES = test/dijkstra_test.cc
    1.75  test_dim_test_SOURCES = test/dim_test.cc
    1.76 +test_edge_set_test_SOURCES = test/edge_set_test.cc
    1.77  test_error_test_SOURCES = test/error_test.cc
    1.78 +test_euler_test_SOURCES = test/euler_test.cc
    1.79 +test_gomory_hu_test_SOURCES = test/gomory_hu_test.cc
    1.80  test_graph_copy_test_SOURCES = test/graph_copy_test.cc
    1.81  test_graph_test_SOURCES = test/graph_test.cc
    1.82  test_graph_utils_test_SOURCES = test/graph_utils_test.cc
    1.83  test_heap_test_SOURCES = test/heap_test.cc
    1.84  test_kruskal_test_SOURCES = test/kruskal_test.cc
    1.85 +test_hao_orlin_test_SOURCES = test/hao_orlin_test.cc
    1.86 +test_lp_test_SOURCES = test/lp_test.cc
    1.87  test_maps_test_SOURCES = test/maps_test.cc
    1.88 +test_mip_test_SOURCES = test/mip_test.cc
    1.89 +test_matching_test_SOURCES = test/matching_test.cc
    1.90 +test_min_cost_arborescence_test_SOURCES = test/min_cost_arborescence_test.cc
    1.91 +test_min_cost_flow_test_SOURCES = test/min_cost_flow_test.cc
    1.92 +test_min_mean_cycle_test_SOURCES = test/min_mean_cycle_test.cc
    1.93  test_path_test_SOURCES = test/path_test.cc
    1.94 +test_preflow_test_SOURCES = test/preflow_test.cc
    1.95 +test_radix_sort_test_SOURCES = test/radix_sort_test.cc
    1.96 +test_suurballe_test_SOURCES = test/suurballe_test.cc
    1.97  test_random_test_SOURCES = test/random_test.cc
    1.98  test_test_tools_fail_SOURCES = test/test_tools_fail.cc
    1.99  test_test_tools_pass_SOURCES = test/test_tools_pass.cc