| [793] | 1 | if USE_VALGRIND | 
|---|
|  | 2 | TESTS_ENVIRONMENT=$(top_srcdir)/scripts/valgrind-wrapper.sh | 
|---|
|  | 3 | endif | 
|---|
|  | 4 |  | 
|---|
| [1] | 5 | EXTRA_DIST += \ | 
|---|
| [228] | 6 | test/CMakeLists.txt | 
|---|
| [1] | 7 |  | 
|---|
| [4] | 8 | noinst_HEADERS += \ | 
|---|
| [171] | 9 | test/graph_test.h \ | 
|---|
| [440] | 10 | test/test_tools.h | 
|---|
| [10] | 11 |  | 
|---|
| [4] | 12 | check_PROGRAMS += \ | 
|---|
| [465] | 13 | test/adaptors_test \ | 
|---|
| [698] | 14 | test/bellman_ford_test \ | 
|---|
| [100] | 15 | test/bfs_test \ | 
|---|
| [440] | 16 | test/circulation_test \ | 
|---|
| [649] | 17 | test/connectivity_test \ | 
|---|
| [440] | 18 | test/counter_test \ | 
|---|
| [100] | 19 | test/dfs_test \ | 
|---|
| [57] | 20 | test/digraph_test \ | 
|---|
| [170] | 21 | test/dijkstra_test \ | 
|---|
| [440] | 22 | test/dim_test \ | 
|---|
| [468] | 23 | test/edge_set_test \ | 
|---|
| [108] | 24 | test/error_test \ | 
|---|
| [522] | 25 | test/euler_test \ | 
|---|
| [869] | 26 | test/fractional_matching_test \ | 
|---|
| [543] | 27 | test/gomory_hu_test \ | 
|---|
| [200] | 28 | test/graph_copy_test \ | 
|---|
| [57] | 29 | test/graph_test \ | 
|---|
| [139] | 30 | test/graph_utils_test \ | 
|---|
| [424] | 31 | test/hao_orlin_test \ | 
|---|
| [203] | 32 | test/heap_test \ | 
|---|
| [103] | 33 | test/kruskal_test \ | 
|---|
| [440] | 34 | test/maps_test \ | 
|---|
| [594] | 35 | test/matching_test \ | 
|---|
| [916] | 36 | test/max_cardinality_search_test \ | 
|---|
| [904] | 37 | test/max_clique_test \ | 
|---|
| [501] | 38 | test/min_cost_arborescence_test \ | 
|---|
| [601] | 39 | test/min_cost_flow_test \ | 
|---|
| [763] | 40 | test/min_mean_cycle_test \ | 
|---|
| [913] | 41 | test/nagamochi_ibaraki_test \ | 
|---|
| [440] | 42 | test/path_test \ | 
|---|
| [797] | 43 | test/planarity_test \ | 
|---|
| [440] | 44 | test/preflow_test \ | 
|---|
| [441] | 45 | test/radix_sort_test \ | 
|---|
| [440] | 46 | test/random_test \ | 
|---|
|  | 47 | test/suurballe_test \ | 
|---|
|  | 48 | test/test_tools_fail \ | 
|---|
|  | 49 | test/test_tools_pass \ | 
|---|
|  | 50 | test/time_measure_test \ | 
|---|
| [1035] | 51 | test/tsp_test \ | 
|---|
| [103] | 52 | test/unionfind_test | 
|---|
| [10] | 53 |  | 
|---|
| [564] | 54 | test_test_tools_pass_DEPENDENCIES = demo | 
|---|
|  | 55 |  | 
|---|
| [458] | 56 | if HAVE_LP | 
|---|
|  | 57 | check_PROGRAMS += test/lp_test | 
|---|
|  | 58 | endif HAVE_LP | 
|---|
|  | 59 | if HAVE_MIP | 
|---|
|  | 60 | check_PROGRAMS += test/mip_test | 
|---|
|  | 61 | endif HAVE_MIP | 
|---|
|  | 62 |  | 
|---|
| [1] | 63 | TESTS += $(check_PROGRAMS) | 
|---|
|  | 64 | XFAIL_TESTS += test/test_tools_fail$(EXEEXT) | 
|---|
| [4] | 65 |  | 
|---|
| [465] | 66 | test_adaptors_test_SOURCES = test/adaptors_test.cc | 
|---|
| [698] | 67 | test_bellman_ford_test_SOURCES = test/bellman_ford_test.cc | 
|---|
| [100] | 68 | test_bfs_test_SOURCES = test/bfs_test.cc | 
|---|
| [400] | 69 | test_circulation_test_SOURCES = test/circulation_test.cc | 
|---|
| [119] | 70 | test_counter_test_SOURCES = test/counter_test.cc | 
|---|
| [649] | 71 | test_connectivity_test_SOURCES = test/connectivity_test.cc | 
|---|
| [100] | 72 | test_dfs_test_SOURCES = test/dfs_test.cc | 
|---|
| [57] | 73 | test_digraph_test_SOURCES = test/digraph_test.cc | 
|---|
| [170] | 74 | test_dijkstra_test_SOURCES = test/dijkstra_test.cc | 
|---|
| [8] | 75 | test_dim_test_SOURCES = test/dim_test.cc | 
|---|
| [468] | 76 | test_edge_set_test_SOURCES = test/edge_set_test.cc | 
|---|
| [108] | 77 | test_error_test_SOURCES = test/error_test.cc | 
|---|
| [522] | 78 | test_euler_test_SOURCES = test/euler_test.cc | 
|---|
| [869] | 79 | test_fractional_matching_test_SOURCES = test/fractional_matching_test.cc | 
|---|
| [543] | 80 | test_gomory_hu_test_SOURCES = test/gomory_hu_test.cc | 
|---|
| [200] | 81 | test_graph_copy_test_SOURCES = test/graph_copy_test.cc | 
|---|
| [57] | 82 | test_graph_test_SOURCES = test/graph_test.cc | 
|---|
| [139] | 83 | test_graph_utils_test_SOURCES = test/graph_utils_test.cc | 
|---|
| [203] | 84 | test_heap_test_SOURCES = test/heap_test.cc | 
|---|
| [103] | 85 | test_kruskal_test_SOURCES = test/kruskal_test.cc | 
|---|
| [410] | 86 | test_hao_orlin_test_SOURCES = test/hao_orlin_test.cc | 
|---|
| [458] | 87 | test_lp_test_SOURCES = test/lp_test.cc | 
|---|
| [25] | 88 | test_maps_test_SOURCES = test/maps_test.cc | 
|---|
| [458] | 89 | test_mip_test_SOURCES = test/mip_test.cc | 
|---|
| [594] | 90 | test_matching_test_SOURCES = test/matching_test.cc | 
|---|
| [916] | 91 | test_max_cardinality_search_test_SOURCES = test/max_cardinality_search_test.cc | 
|---|
| [904] | 92 | test_max_clique_test_SOURCES = test/max_clique_test.cc | 
|---|
| [501] | 93 | test_min_cost_arborescence_test_SOURCES = test/min_cost_arborescence_test.cc | 
|---|
| [601] | 94 | test_min_cost_flow_test_SOURCES = test/min_cost_flow_test.cc | 
|---|
| [763] | 95 | test_min_mean_cycle_test_SOURCES = test/min_mean_cycle_test.cc | 
|---|
| [913] | 96 | test_nagamochi_ibaraki_test_SOURCES = test/nagamochi_ibaraki_test.cc | 
|---|
| [96] | 97 | test_path_test_SOURCES = test/path_test.cc | 
|---|
| [797] | 98 | test_planarity_test_SOURCES = test/planarity_test.cc | 
|---|
| [389] | 99 | test_preflow_test_SOURCES = test/preflow_test.cc | 
|---|
| [441] | 100 | test_radix_sort_test_SOURCES = test/radix_sort_test.cc | 
|---|
| [345] | 101 | test_suurballe_test_SOURCES = test/suurballe_test.cc | 
|---|
| [10] | 102 | test_random_test_SOURCES = test/random_test.cc | 
|---|
| [4] | 103 | test_test_tools_fail_SOURCES = test/test_tools_fail.cc | 
|---|
|  | 104 | test_test_tools_pass_SOURCES = test/test_tools_pass.cc | 
|---|
| [119] | 105 | test_time_measure_test_SOURCES = test/time_measure_test.cc | 
|---|
| [1035] | 106 | test_tsp_test_SOURCES = test/tsp_test.cc | 
|---|
| [103] | 107 | test_unionfind_test_SOURCES = test/unionfind_test.cc | 
|---|