| 1 |
1 |
EXTRA_DIST += \
|
| 2 |
2 |
test/CMakeLists.txt
|
| 3 |
3 |
|
| 4 |
4 |
noinst_HEADERS += \
|
| 5 |
5 |
test/graph_test.h \
|
| 6 |
6 |
test/test_tools.h
|
| 7 |
7 |
|
| 8 |
8 |
check_PROGRAMS += \
|
| 9 |
9 |
test/bfs_test \
|
| 10 |
10 |
test/circulation_test \
|
| 11 |
11 |
test/counter_test \
|
| 12 |
12 |
test/dfs_test \
|
| 13 |
13 |
test/digraph_test \
|
| 14 |
14 |
test/dijkstra_test \
|
| 15 |
15 |
test/dim_test \
|
| 16 |
16 |
test/error_test \
|
| 17 |
17 |
test/graph_adaptor_test \
|
| 18 |
18 |
test/graph_copy_test \
|
| 19 |
19 |
test/graph_test \
|
| 20 |
20 |
test/graph_utils_test \
|
|
21 |
test/hao_orlin_test \
|
| 21 |
22 |
test/heap_test \
|
| 22 |
23 |
test/kruskal_test \
|
| 23 |
|
test/hao_orlin_test \
|
| 24 |
24 |
test/maps_test \
|
| 25 |
25 |
test/max_matching_test \
|
| 26 |
|
test/random_test \
|
| 27 |
26 |
test/path_test \
|
| 28 |
27 |
test/preflow_test \
|
|
28 |
test/random_test \
|
| 29 |
29 |
test/suurballe_test \
|
| 30 |
30 |
test/test_tools_fail \
|
| 31 |
31 |
test/test_tools_pass \
|
| 32 |
32 |
test/time_measure_test \
|
| 33 |
33 |
test/unionfind_test
|
| 34 |
34 |
|
| 35 |
35 |
TESTS += $(check_PROGRAMS)
|
| 36 |
36 |
XFAIL_TESTS += test/test_tools_fail$(EXEEXT)
|
| 37 |
37 |
|
| 38 |
38 |
test_bfs_test_SOURCES = test/bfs_test.cc
|
| 39 |
39 |
test_circulation_test_SOURCES = test/circulation_test.cc
|
| 40 |
40 |
test_counter_test_SOURCES = test/counter_test.cc
|
| 41 |
41 |
test_dfs_test_SOURCES = test/dfs_test.cc
|
| 42 |
42 |
test_digraph_test_SOURCES = test/digraph_test.cc
|
| 43 |
43 |
test_dijkstra_test_SOURCES = test/dijkstra_test.cc
|
| 44 |
44 |
test_dim_test_SOURCES = test/dim_test.cc
|
| 45 |
45 |
test_error_test_SOURCES = test/error_test.cc
|
| 46 |
46 |
test_graph_adaptor_test_SOURCES = test/graph_adaptor_test.cc
|
| 47 |
47 |
test_graph_copy_test_SOURCES = test/graph_copy_test.cc
|
| 48 |
48 |
test_graph_test_SOURCES = test/graph_test.cc
|
| 49 |
49 |
test_graph_utils_test_SOURCES = test/graph_utils_test.cc
|
| 50 |
50 |
test_heap_test_SOURCES = test/heap_test.cc
|
| 51 |
51 |
test_kruskal_test_SOURCES = test/kruskal_test.cc
|
| 52 |
52 |
test_hao_orlin_test_SOURCES = test/hao_orlin_test.cc
|
| 53 |
53 |
test_maps_test_SOURCES = test/maps_test.cc
|
| 54 |
54 |
test_max_matching_test_SOURCES = test/max_matching_test.cc
|
| 55 |
55 |
test_path_test_SOURCES = test/path_test.cc
|
| 56 |
56 |
test_preflow_test_SOURCES = test/preflow_test.cc
|
| 57 |
57 |
test_suurballe_test_SOURCES = test/suurballe_test.cc
|
| 58 |
58 |
test_random_test_SOURCES = test/random_test.cc
|
| 59 |
59 |
test_test_tools_fail_SOURCES = test/test_tools_fail.cc
|
| 60 |
60 |
test_test_tools_pass_SOURCES = test/test_tools_pass.cc
|
| 61 |
61 |
test_time_measure_test_SOURCES = test/time_measure_test.cc
|
| 62 |
62 |
test_unionfind_test_SOURCES = test/unionfind_test.cc
|