test/Makefile.am
changeset 1402 3c00344f49c9
parent 1401 cd72eae05bdf
parent 1400 6b79d93e812f
child 1403 e5af35e6c93f
child 1404 c8d0179a32a2
child 1416 f179aa1045a4
     1.1 --- a/test/Makefile.am	Mon Jul 16 16:21:40 2018 +0200
     1.2 +++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.3 @@ -1,101 +0,0 @@
     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 -noinst_HEADERS += \
    1.12 -	test/graph_test.h \
    1.13 -	test/test_tools.h
    1.14 -
    1.15 -check_PROGRAMS += \
    1.16 -	test/adaptors_test \
    1.17 -	test/bellman_ford_test \
    1.18 -	test/bfs_test \
    1.19 -	test/circulation_test \
    1.20 -	test/connectivity_test \
    1.21 -	test/counter_test \
    1.22 -	test/dfs_test \
    1.23 -	test/digraph_test \
    1.24 -	test/dijkstra_test \
    1.25 -	test/dim_test \
    1.26 -	test/edge_set_test \
    1.27 -	test/error_test \
    1.28 -	test/euler_test \
    1.29 -	test/fractional_matching_test \
    1.30 -	test/gomory_hu_test \
    1.31 -	test/graph_copy_test \
    1.32 -	test/graph_test \
    1.33 -	test/graph_utils_test \
    1.34 -	test/hao_orlin_test \
    1.35 -	test/heap_test \
    1.36 -	test/kruskal_test \
    1.37 -	test/lgf_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/min_mean_cycle_test \
    1.43 -	test/path_test \
    1.44 -	test/planarity_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_fractional_matching_test_SOURCES = test/fractional_matching_test.cc
    1.80 -test_gomory_hu_test_SOURCES = test/gomory_hu_test.cc
    1.81 -test_graph_copy_test_SOURCES = test/graph_copy_test.cc
    1.82 -test_graph_test_SOURCES = test/graph_test.cc
    1.83 -test_graph_utils_test_SOURCES = test/graph_utils_test.cc
    1.84 -test_heap_test_SOURCES = test/heap_test.cc
    1.85 -test_kruskal_test_SOURCES = test/kruskal_test.cc
    1.86 -test_hao_orlin_test_SOURCES = test/hao_orlin_test.cc
    1.87 -test_lgf_test_SOURCES = test/lgf_test.cc
    1.88 -test_lp_test_SOURCES = test/lp_test.cc
    1.89 -test_maps_test_SOURCES = test/maps_test.cc
    1.90 -test_mip_test_SOURCES = test/mip_test.cc
    1.91 -test_matching_test_SOURCES = test/matching_test.cc
    1.92 -test_min_cost_arborescence_test_SOURCES = test/min_cost_arborescence_test.cc
    1.93 -test_min_cost_flow_test_SOURCES = test/min_cost_flow_test.cc
    1.94 -test_min_mean_cycle_test_SOURCES = test/min_mean_cycle_test.cc
    1.95 -test_path_test_SOURCES = test/path_test.cc
    1.96 -test_planarity_test_SOURCES = test/planarity_test.cc
    1.97 -test_preflow_test_SOURCES = test/preflow_test.cc
    1.98 -test_radix_sort_test_SOURCES = test/radix_sort_test.cc
    1.99 -test_suurballe_test_SOURCES = test/suurballe_test.cc
   1.100 -test_random_test_SOURCES = test/random_test.cc
   1.101 -test_test_tools_fail_SOURCES = test/test_tools_fail.cc
   1.102 -test_test_tools_pass_SOURCES = test/test_tools_pass.cc
   1.103 -test_time_measure_test_SOURCES = test/time_measure_test.cc
   1.104 -test_unionfind_test_SOURCES = test/unionfind_test.cc