1
2
1
1 | 1 |
INCLUDE_DIRECTORIES(${CMAKE_SOURCE_DIR}) |
2 | 2 |
|
3 | 3 |
LINK_DIRECTORIES(${CMAKE_BINARY_DIR}/lemon) |
4 | 4 |
|
5 | 5 |
SET(TESTS |
6 |
adaptors_test |
|
6 | 7 |
bfs_test |
7 | 8 |
circulation_test |
8 | 9 |
counter_test |
9 | 10 |
dfs_test |
10 | 11 |
digraph_test |
11 | 12 |
dijkstra_test |
12 | 13 |
dim_test |
13 | 14 |
error_test |
14 |
graph_adaptor_test |
|
15 | 15 |
graph_copy_test |
16 | 16 |
graph_test |
17 | 17 |
graph_utils_test |
18 | 18 |
hao_orlin_test |
19 | 19 |
heap_test |
20 | 20 |
kruskal_test |
... | ... |
@@ -3,21 +3,21 @@ |
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 |
test/adaptors_test \ |
|
9 | 10 |
test/bfs_test \ |
10 | 11 |
test/circulation_test \ |
11 | 12 |
test/counter_test \ |
12 | 13 |
test/dfs_test \ |
13 | 14 |
test/digraph_test \ |
14 | 15 |
test/dijkstra_test \ |
15 | 16 |
test/dim_test \ |
16 | 17 |
test/error_test \ |
17 |
test/graph_adaptor_test \ |
|
18 | 18 |
test/graph_copy_test \ |
19 | 19 |
test/graph_test \ |
20 | 20 |
test/graph_utils_test \ |
21 | 21 |
test/hao_orlin_test \ |
22 | 22 |
test/heap_test \ |
23 | 23 |
test/kruskal_test \ |
... | ... |
@@ -33,21 +33,21 @@ |
33 | 33 |
test/time_measure_test \ |
34 | 34 |
test/unionfind_test |
35 | 35 |
|
36 | 36 |
TESTS += $(check_PROGRAMS) |
37 | 37 |
XFAIL_TESTS += test/test_tools_fail$(EXEEXT) |
38 | 38 |
|
39 |
test_adaptors_test_SOURCES = test/adaptors_test.cc |
|
39 | 40 |
test_bfs_test_SOURCES = test/bfs_test.cc |
40 | 41 |
test_circulation_test_SOURCES = test/circulation_test.cc |
41 | 42 |
test_counter_test_SOURCES = test/counter_test.cc |
42 | 43 |
test_dfs_test_SOURCES = test/dfs_test.cc |
43 | 44 |
test_digraph_test_SOURCES = test/digraph_test.cc |
44 | 45 |
test_dijkstra_test_SOURCES = test/dijkstra_test.cc |
45 | 46 |
test_dim_test_SOURCES = test/dim_test.cc |
46 | 47 |
test_error_test_SOURCES = test/error_test.cc |
47 |
test_graph_adaptor_test_SOURCES = test/graph_adaptor_test.cc |
|
48 | 48 |
test_graph_copy_test_SOURCES = test/graph_copy_test.cc |
49 | 49 |
test_graph_test_SOURCES = test/graph_test.cc |
50 | 50 |
test_graph_utils_test_SOURCES = test/graph_utils_test.cc |
51 | 51 |
test_heap_test_SOURCES = test/heap_test.cc |
52 | 52 |
test_kruskal_test_SOURCES = test/kruskal_test.cc |
53 | 53 |
test_hao_orlin_test_SOURCES = test/hao_orlin_test.cc |
0 comments (0 inline)