equal
deleted
inserted
replaced
1 EXTRA_DIST += \ |
1 EXTRA_DIST += \ |
2 test/Makefile |
2 test/Makefile |
3 |
3 |
4 noinst_HEADERS += \ |
4 noinst_HEADERS += \ |
5 test/digraph_test.h \ |
5 test/digraph_test.h \ |
|
6 test/graph_utils_test.h \ |
6 test/heap_test.h \ |
7 test/heap_test.h \ |
7 test/map_test.h \ |
8 test/map_test.h \ |
8 test/test_tools.h |
9 test/test_tools.h |
9 |
10 |
10 check_PROGRAMS += \ |
11 check_PROGRAMS += \ |
13 test/dfs_test \ |
14 test/dfs_test \ |
14 test/digraph_test \ |
15 test/digraph_test \ |
15 test/dim_test \ |
16 test/dim_test \ |
16 test/error_test \ |
17 test/error_test \ |
17 test/graph_test \ |
18 test/graph_test \ |
|
19 test/graph_utils_test \ |
18 test/kruskal_test \ |
20 test/kruskal_test \ |
19 test/maps_test \ |
21 test/maps_test \ |
20 test/random_test \ |
22 test/random_test \ |
21 test/path_test \ |
23 test/path_test \ |
22 test/test_tools_fail \ |
24 test/test_tools_fail \ |
32 test_dfs_test_SOURCES = test/dfs_test.cc |
34 test_dfs_test_SOURCES = test/dfs_test.cc |
33 test_digraph_test_SOURCES = test/digraph_test.cc |
35 test_digraph_test_SOURCES = test/digraph_test.cc |
34 test_dim_test_SOURCES = test/dim_test.cc |
36 test_dim_test_SOURCES = test/dim_test.cc |
35 test_error_test_SOURCES = test/error_test.cc |
37 test_error_test_SOURCES = test/error_test.cc |
36 test_graph_test_SOURCES = test/graph_test.cc |
38 test_graph_test_SOURCES = test/graph_test.cc |
|
39 test_graph_utils_test_SOURCES = test/graph_utils_test.cc |
37 # test_heap_test_SOURCES = test/heap_test.cc |
40 # test_heap_test_SOURCES = test/heap_test.cc |
38 test_kruskal_test_SOURCES = test/kruskal_test.cc |
41 test_kruskal_test_SOURCES = test/kruskal_test.cc |
39 test_maps_test_SOURCES = test/maps_test.cc |
42 test_maps_test_SOURCES = test/maps_test.cc |
40 test_path_test_SOURCES = test/path_test.cc |
43 test_path_test_SOURCES = test/path_test.cc |
41 test_random_test_SOURCES = test/random_test.cc |
44 test_random_test_SOURCES = test/random_test.cc |