1 AM_CPPFLAGS = -I$(top_srcdir)/src |
1 AM_CPPFLAGS = -I$(top_srcdir)/src |
2 |
2 |
3 noinst_HEADERS = test_tools.h |
3 noinst_HEADERS = test_tools.h |
4 |
4 |
5 check_PROGRAMS = graph_test dijkstra_test time_measure_test error_test xy_test \ |
5 check_PROGRAMS = graph_test dijkstra_test bfs_test time_measure_test \ |
6 test_tools_pass test_tools_fail |
6 error_test xy_test \ |
|
7 unionfind_test test_tools_pass test_tools_fail |
7 |
8 |
8 TESTS = $(check_PROGRAMS) |
9 TESTS = $(check_PROGRAMS) |
9 XFAIL_TESTS = test_tools_fail |
10 XFAIL_TESTS = test_tools_fail |
10 |
11 |
11 graph_test_SOURCES = graph_test.cc |
12 graph_test_SOURCES = graph_test.cc |
12 dijkstra_test_SOURCES = dijkstra_test.cc |
13 dijkstra_test_SOURCES = dijkstra_test.cc |
|
14 bfs_test_SOURCES = bfs_test.cc |
|
15 unionfind_test_SOURCES = unionfind_test.cc |
13 time_measure_test_SOURCES = time_measure_test.cc |
16 time_measure_test_SOURCES = time_measure_test.cc |
14 error_test_SOURCES = error_test.cc |
17 error_test_SOURCES = error_test.cc |
15 xy_test_SOURCES = xy_test.cc |
18 xy_test_SOURCES = xy_test.cc |
16 test_tools_pass_SOURCES = test_tools_pass.cc |
19 test_tools_pass_SOURCES = test_tools_pass.cc |
17 test_tools_fail_SOURCES = test_tools_fail.cc |
20 test_tools_fail_SOURCES = test_tools_fail.cc |