[1] | 1 | EXTRA_DIST += \ |
---|
[228] | 2 | test/CMakeLists.txt |
---|
[1] | 3 | |
---|
[4] | 4 | noinst_HEADERS += \ |
---|
[171] | 5 | test/graph_test.h \ |
---|
[440] | 6 | test/test_tools.h |
---|
[10] | 7 | |
---|
[4] | 8 | check_PROGRAMS += \ |
---|
[465] | 9 | test/adaptors_test \ |
---|
[100] | 10 | test/bfs_test \ |
---|
[440] | 11 | test/circulation_test \ |
---|
| 12 | test/counter_test \ |
---|
[100] | 13 | test/dfs_test \ |
---|
[57] | 14 | test/digraph_test \ |
---|
[170] | 15 | test/dijkstra_test \ |
---|
[440] | 16 | test/dim_test \ |
---|
[468] | 17 | test/edge_set_test \ |
---|
[108] | 18 | test/error_test \ |
---|
[506] | 19 | test/euler_test \ |
---|
[200] | 20 | test/graph_copy_test \ |
---|
[57] | 21 | test/graph_test \ |
---|
[139] | 22 | test/graph_utils_test \ |
---|
[424] | 23 | test/hao_orlin_test \ |
---|
[203] | 24 | test/heap_test \ |
---|
[103] | 25 | test/kruskal_test \ |
---|
[440] | 26 | test/maps_test \ |
---|
[326] | 27 | test/max_matching_test \ |
---|
[440] | 28 | test/path_test \ |
---|
| 29 | test/preflow_test \ |
---|
[441] | 30 | test/radix_sort_test \ |
---|
[440] | 31 | test/random_test \ |
---|
| 32 | test/suurballe_test \ |
---|
| 33 | test/test_tools_fail \ |
---|
| 34 | test/test_tools_pass \ |
---|
| 35 | test/time_measure_test \ |
---|
[103] | 36 | test/unionfind_test |
---|
[10] | 37 | |
---|
[458] | 38 | if HAVE_LP |
---|
| 39 | check_PROGRAMS += test/lp_test |
---|
| 40 | endif HAVE_LP |
---|
| 41 | if HAVE_MIP |
---|
| 42 | check_PROGRAMS += test/mip_test |
---|
| 43 | endif HAVE_MIP |
---|
| 44 | |
---|
[1] | 45 | TESTS += $(check_PROGRAMS) |
---|
| 46 | XFAIL_TESTS += test/test_tools_fail$(EXEEXT) |
---|
[4] | 47 | |
---|
[465] | 48 | test_adaptors_test_SOURCES = test/adaptors_test.cc |
---|
[100] | 49 | test_bfs_test_SOURCES = test/bfs_test.cc |
---|
[400] | 50 | test_circulation_test_SOURCES = test/circulation_test.cc |
---|
[119] | 51 | test_counter_test_SOURCES = test/counter_test.cc |
---|
[100] | 52 | test_dfs_test_SOURCES = test/dfs_test.cc |
---|
[57] | 53 | test_digraph_test_SOURCES = test/digraph_test.cc |
---|
[170] | 54 | test_dijkstra_test_SOURCES = test/dijkstra_test.cc |
---|
[8] | 55 | test_dim_test_SOURCES = test/dim_test.cc |
---|
[468] | 56 | test_edge_set_test_SOURCES = test/edge_set_test.cc |
---|
[108] | 57 | test_error_test_SOURCES = test/error_test.cc |
---|
[506] | 58 | test_euler_test_SOURCES = test/euler_test.cc |
---|
[200] | 59 | test_graph_copy_test_SOURCES = test/graph_copy_test.cc |
---|
[57] | 60 | test_graph_test_SOURCES = test/graph_test.cc |
---|
[139] | 61 | test_graph_utils_test_SOURCES = test/graph_utils_test.cc |
---|
[203] | 62 | test_heap_test_SOURCES = test/heap_test.cc |
---|
[103] | 63 | test_kruskal_test_SOURCES = test/kruskal_test.cc |
---|
[410] | 64 | test_hao_orlin_test_SOURCES = test/hao_orlin_test.cc |
---|
[458] | 65 | test_lp_test_SOURCES = test/lp_test.cc |
---|
[25] | 66 | test_maps_test_SOURCES = test/maps_test.cc |
---|
[458] | 67 | test_mip_test_SOURCES = test/mip_test.cc |
---|
[326] | 68 | test_max_matching_test_SOURCES = test/max_matching_test.cc |
---|
[96] | 69 | test_path_test_SOURCES = test/path_test.cc |
---|
[389] | 70 | test_preflow_test_SOURCES = test/preflow_test.cc |
---|
[441] | 71 | test_radix_sort_test_SOURCES = test/radix_sort_test.cc |
---|
[345] | 72 | test_suurballe_test_SOURCES = test/suurballe_test.cc |
---|
[10] | 73 | test_random_test_SOURCES = test/random_test.cc |
---|
[4] | 74 | test_test_tools_fail_SOURCES = test/test_tools_fail.cc |
---|
| 75 | test_test_tools_pass_SOURCES = test/test_tools_pass.cc |
---|
[119] | 76 | test_time_measure_test_SOURCES = test/time_measure_test.cc |
---|
[103] | 77 | test_unionfind_test_SOURCES = test/unionfind_test.cc |
---|