1.1 --- a/test/Makefile.am Fri Nov 13 12:33:33 2009 +0100
1.2 +++ b/test/Makefile.am Thu Dec 10 17:05:35 2009 +0100
1.3 @@ -3,46 +3,83 @@
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/bfs_test \
1.13 - test/counter_test \
1.14 + test/circulation_test \
1.15 + test/connectivity_test \
1.16 + test/counter_test \
1.17 test/dfs_test \
1.18 test/digraph_test \
1.19 test/dijkstra_test \
1.20 - test/dim_test \
1.21 + test/dim_test \
1.22 + test/edge_set_test \
1.23 test/error_test \
1.24 + test/euler_test \
1.25 + test/gomory_hu_test \
1.26 test/graph_copy_test \
1.27 test/graph_test \
1.28 test/graph_utils_test \
1.29 + test/hao_orlin_test \
1.30 test/heap_test \
1.31 test/kruskal_test \
1.32 - test/maps_test \
1.33 - test/random_test \
1.34 - test/path_test \
1.35 - test/test_tools_fail \
1.36 - test/test_tools_pass \
1.37 - test/time_measure_test \
1.38 + test/maps_test \
1.39 + test/matching_test \
1.40 + test/min_cost_arborescence_test \
1.41 + test/min_cost_flow_test \
1.42 + test/path_test \
1.43 + test/preflow_test \
1.44 + test/radix_sort_test \
1.45 + test/random_test \
1.46 + test/suurballe_test \
1.47 + test/test_tools_fail \
1.48 + test/test_tools_pass \
1.49 + test/time_measure_test \
1.50 test/unionfind_test
1.51
1.52 +test_test_tools_pass_DEPENDENCIES = demo
1.53 +
1.54 +if HAVE_LP
1.55 +check_PROGRAMS += test/lp_test
1.56 +endif HAVE_LP
1.57 +if HAVE_MIP
1.58 +check_PROGRAMS += test/mip_test
1.59 +endif HAVE_MIP
1.60 +
1.61 TESTS += $(check_PROGRAMS)
1.62 XFAIL_TESTS += test/test_tools_fail$(EXEEXT)
1.63
1.64 +test_adaptors_test_SOURCES = test/adaptors_test.cc
1.65 test_bfs_test_SOURCES = test/bfs_test.cc
1.66 +test_circulation_test_SOURCES = test/circulation_test.cc
1.67 test_counter_test_SOURCES = test/counter_test.cc
1.68 +test_connectivity_test_SOURCES = test/connectivity_test.cc
1.69 test_dfs_test_SOURCES = test/dfs_test.cc
1.70 test_digraph_test_SOURCES = test/digraph_test.cc
1.71 test_dijkstra_test_SOURCES = test/dijkstra_test.cc
1.72 test_dim_test_SOURCES = test/dim_test.cc
1.73 +test_edge_set_test_SOURCES = test/edge_set_test.cc
1.74 test_error_test_SOURCES = test/error_test.cc
1.75 +test_euler_test_SOURCES = test/euler_test.cc
1.76 +test_gomory_hu_test_SOURCES = test/gomory_hu_test.cc
1.77 test_graph_copy_test_SOURCES = test/graph_copy_test.cc
1.78 test_graph_test_SOURCES = test/graph_test.cc
1.79 test_graph_utils_test_SOURCES = test/graph_utils_test.cc
1.80 test_heap_test_SOURCES = test/heap_test.cc
1.81 test_kruskal_test_SOURCES = test/kruskal_test.cc
1.82 +test_hao_orlin_test_SOURCES = test/hao_orlin_test.cc
1.83 +test_lp_test_SOURCES = test/lp_test.cc
1.84 test_maps_test_SOURCES = test/maps_test.cc
1.85 +test_mip_test_SOURCES = test/mip_test.cc
1.86 +test_matching_test_SOURCES = test/matching_test.cc
1.87 +test_min_cost_arborescence_test_SOURCES = test/min_cost_arborescence_test.cc
1.88 +test_min_cost_flow_test_SOURCES = test/min_cost_flow_test.cc
1.89 test_path_test_SOURCES = test/path_test.cc
1.90 +test_preflow_test_SOURCES = test/preflow_test.cc
1.91 +test_radix_sort_test_SOURCES = test/radix_sort_test.cc
1.92 +test_suurballe_test_SOURCES = test/suurballe_test.cc
1.93 test_random_test_SOURCES = test/random_test.cc
1.94 test_test_tools_fail_SOURCES = test/test_tools_fail.cc
1.95 test_test_tools_pass_SOURCES = test/test_tools_pass.cc