test/Makefile.am
changeset 964 2b6bffe0e7e8
parent 959 17e36e175725
parent 874 d8ea85825e02
child 966 c8fce9beb46a
     1.1 --- a/test/Makefile.am	Tue Dec 20 17:44:38 2011 +0100
     1.2 +++ b/test/Makefile.am	Tue Dec 20 18:15:14 2011 +0100
     1.3 @@ -1,3 +1,7 @@
     1.4 +if USE_VALGRIND
     1.5 +TESTS_ENVIRONMENT=$(top_srcdir)/scripts/valgrind-wrapper.sh
     1.6 +endif
     1.7 +
     1.8  EXTRA_DIST += \
     1.9  	test/CMakeLists.txt
    1.10  
    1.11 @@ -7,6 +11,7 @@
    1.12  
    1.13  check_PROGRAMS += \
    1.14  	test/adaptors_test \
    1.15 +	test/bellman_ford_test \
    1.16  	test/bfs_test \
    1.17  	test/circulation_test \
    1.18  	test/connectivity_test \
    1.19 @@ -18,6 +23,7 @@
    1.20  	test/edge_set_test \
    1.21  	test/error_test \
    1.22  	test/euler_test \
    1.23 +	test/fractional_matching_test \
    1.24  	test/gomory_hu_test \
    1.25  	test/graph_copy_test \
    1.26  	test/graph_test \
    1.27 @@ -30,7 +36,9 @@
    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/planarity_test \
    1.34  	test/preflow_test \
    1.35  	test/radix_sort_test \
    1.36  	test/random_test \
    1.37 @@ -53,6 +61,7 @@
    1.38  XFAIL_TESTS += test/test_tools_fail$(EXEEXT)
    1.39  
    1.40  test_adaptors_test_SOURCES = test/adaptors_test.cc
    1.41 +test_bellman_ford_test_SOURCES = test/bellman_ford_test.cc
    1.42  test_bfs_test_SOURCES = test/bfs_test.cc
    1.43  test_circulation_test_SOURCES = test/circulation_test.cc
    1.44  test_counter_test_SOURCES = test/counter_test.cc
    1.45 @@ -64,6 +73,7 @@
    1.46  test_edge_set_test_SOURCES = test/edge_set_test.cc
    1.47  test_error_test_SOURCES = test/error_test.cc
    1.48  test_euler_test_SOURCES = test/euler_test.cc
    1.49 +test_fractional_matching_test_SOURCES = test/fractional_matching_test.cc
    1.50  test_gomory_hu_test_SOURCES = test/gomory_hu_test.cc
    1.51  test_graph_copy_test_SOURCES = test/graph_copy_test.cc
    1.52  test_graph_test_SOURCES = test/graph_test.cc
    1.53 @@ -78,7 +88,9 @@
    1.54  test_matching_test_SOURCES = test/matching_test.cc
    1.55  test_min_cost_arborescence_test_SOURCES = test/min_cost_arborescence_test.cc
    1.56  test_min_cost_flow_test_SOURCES = test/min_cost_flow_test.cc
    1.57 +test_min_mean_cycle_test_SOURCES = test/min_mean_cycle_test.cc
    1.58  test_path_test_SOURCES = test/path_test.cc
    1.59 +test_planarity_test_SOURCES = test/planarity_test.cc
    1.60  test_preflow_test_SOURCES = test/preflow_test.cc
    1.61  test_radix_sort_test_SOURCES = test/radix_sort_test.cc
    1.62  test_suurballe_test_SOURCES = test/suurballe_test.cc