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/heap_test.h \ |
6 test/map_test.h \ |
7 test/map_test.h \ |
7 test/test_tools.h |
8 test/test_tools.h |
8 |
9 |
9 check_PROGRAMS += \ |
10 check_PROGRAMS += \ |
|
11 test/bfs_test \ |
|
12 test/dfs_test \ |
10 test/digraph_test \ |
13 test/digraph_test \ |
11 test/dim_test \ |
14 test/dim_test \ |
12 test/graph_test \ |
15 test/graph_test \ |
13 test/maps_test \ |
16 test/maps_test \ |
14 test/random_test \ |
17 test/random_test \ |
17 test/test_tools_pass |
20 test/test_tools_pass |
18 |
21 |
19 TESTS += $(check_PROGRAMS) |
22 TESTS += $(check_PROGRAMS) |
20 XFAIL_TESTS += test/test_tools_fail$(EXEEXT) |
23 XFAIL_TESTS += test/test_tools_fail$(EXEEXT) |
21 |
24 |
|
25 test_bfs_test_SOURCES = test/bfs_test.cc |
|
26 test_dfs_test_SOURCES = test/dfs_test.cc |
22 test_digraph_test_SOURCES = test/digraph_test.cc |
27 test_digraph_test_SOURCES = test/digraph_test.cc |
23 test_dim_test_SOURCES = test/dim_test.cc |
28 test_dim_test_SOURCES = test/dim_test.cc |
24 #test_error_test_SOURCES = test/error_test.cc |
29 #test_error_test_SOURCES = test/error_test.cc |
25 test_graph_test_SOURCES = test/graph_test.cc |
30 test_graph_test_SOURCES = test/graph_test.cc |
|
31 # test_heap_test_SOURCES = test/heap_test.cc |
26 test_maps_test_SOURCES = test/maps_test.cc |
32 test_maps_test_SOURCES = test/maps_test.cc |
27 test_path_test_SOURCES = test/path_test.cc |
33 test_path_test_SOURCES = test/path_test.cc |
28 test_random_test_SOURCES = test/random_test.cc |
34 test_random_test_SOURCES = test/random_test.cc |
29 test_test_tools_fail_SOURCES = test/test_tools_fail.cc |
35 test_test_tools_fail_SOURCES = test/test_tools_fail.cc |
30 test_test_tools_pass_SOURCES = test/test_tools_pass.cc |
36 test_test_tools_pass_SOURCES = test/test_tools_pass.cc |