equal
deleted
inserted
replaced
1 EXTRA_DIST += \ |
1 EXTRA_DIST += \ |
2 test/CMakeLists.txt |
2 test/CMakeLists.txt |
3 |
3 |
4 noinst_HEADERS += \ |
4 noinst_HEADERS += \ |
5 test/graph_test.h \ |
5 test/graph_test.h \ |
6 test/heap_test.h \ |
|
7 test/graph_maps_test.h \ |
6 test/graph_maps_test.h \ |
8 test/test_tools.h |
7 test/test_tools.h |
9 |
8 |
10 check_PROGRAMS += \ |
9 check_PROGRAMS += \ |
11 test/bfs_test \ |
10 test/bfs_test \ |
16 test/dim_test \ |
15 test/dim_test \ |
17 test/error_test \ |
16 test/error_test \ |
18 test/graph_copy_test \ |
17 test/graph_copy_test \ |
19 test/graph_test \ |
18 test/graph_test \ |
20 test/graph_utils_test \ |
19 test/graph_utils_test \ |
|
20 test/heap_test \ |
21 test/kruskal_test \ |
21 test/kruskal_test \ |
22 test/maps_test \ |
22 test/maps_test \ |
23 test/random_test \ |
23 test/random_test \ |
24 test/path_test \ |
24 test/path_test \ |
25 test/test_tools_fail \ |
25 test/test_tools_fail \ |
38 test_dim_test_SOURCES = test/dim_test.cc |
38 test_dim_test_SOURCES = test/dim_test.cc |
39 test_error_test_SOURCES = test/error_test.cc |
39 test_error_test_SOURCES = test/error_test.cc |
40 test_graph_copy_test_SOURCES = test/graph_copy_test.cc |
40 test_graph_copy_test_SOURCES = test/graph_copy_test.cc |
41 test_graph_test_SOURCES = test/graph_test.cc |
41 test_graph_test_SOURCES = test/graph_test.cc |
42 test_graph_utils_test_SOURCES = test/graph_utils_test.cc |
42 test_graph_utils_test_SOURCES = test/graph_utils_test.cc |
43 # test_heap_test_SOURCES = test/heap_test.cc |
43 test_heap_test_SOURCES = test/heap_test.cc |
44 test_kruskal_test_SOURCES = test/kruskal_test.cc |
44 test_kruskal_test_SOURCES = test/kruskal_test.cc |
45 test_maps_test_SOURCES = test/maps_test.cc |
45 test_maps_test_SOURCES = test/maps_test.cc |
46 test_path_test_SOURCES = test/path_test.cc |
46 test_path_test_SOURCES = test/path_test.cc |
47 test_random_test_SOURCES = test/random_test.cc |
47 test_random_test_SOURCES = test/random_test.cc |
48 test_test_tools_fail_SOURCES = test/test_tools_fail.cc |
48 test_test_tools_fail_SOURCES = test/test_tools_fail.cc |