equal
deleted
inserted
replaced
5 noinst_HEADERS = \ |
5 noinst_HEADERS = \ |
6 test_tools.h \ |
6 test_tools.h \ |
7 graph_test.h \ |
7 graph_test.h \ |
8 sym_graph_test.h \ |
8 sym_graph_test.h \ |
9 map_test.h \ |
9 map_test.h \ |
10 graph_utils_test.h |
10 graph_utils_test.h \ |
|
11 heap_test.h |
11 |
12 |
12 check_PROGRAMS = \ |
13 check_PROGRAMS = \ |
13 bfs_test \ |
14 bfs_test \ |
14 dfs_test \ |
15 dfs_test \ |
15 dijkstra_test \ |
16 dijkstra_test \ |
26 test_tools_fail \ |
27 test_tools_fail \ |
27 test_tools_pass \ |
28 test_tools_pass \ |
28 time_measure_test \ |
29 time_measure_test \ |
29 unionfind_test \ |
30 unionfind_test \ |
30 undir_graph_test \ |
31 undir_graph_test \ |
31 xy_test |
32 xy_test \ |
|
33 heap_test |
32 |
34 |
33 TESTS = $(check_PROGRAMS) |
35 TESTS = $(check_PROGRAMS) |
34 XFAIL_TESTS = test_tools_fail |
36 XFAIL_TESTS = test_tools_fail |
35 |
37 |
36 bfs_test_SOURCES = bfs_test.cc |
38 bfs_test_SOURCES = bfs_test.cc |
50 test_tools_fail_SOURCES = test_tools_fail.cc |
52 test_tools_fail_SOURCES = test_tools_fail.cc |
51 test_tools_pass_SOURCES = test_tools_pass.cc |
53 test_tools_pass_SOURCES = test_tools_pass.cc |
52 unionfind_test_SOURCES = unionfind_test.cc |
54 unionfind_test_SOURCES = unionfind_test.cc |
53 xy_test_SOURCES = xy_test.cc |
55 xy_test_SOURCES = xy_test.cc |
54 undir_graph_test_SOURCES = undir_graph_test.cc |
56 undir_graph_test_SOURCES = undir_graph_test.cc |
55 |
57 heap_test_SOURCES = heap_test.cc |