COIN-OR::LEMON - Graph Library

source: lemon-0.x/src/test/Makefile.am @ 1206:9c398137c2cb

Last change on this file since 1206:9c398137c2cb was 1206:9c398137c2cb, checked in by Balazs Dezso, 19 years ago

Increase test
Changing test graph

File size: 1.4 KB
Line 
1AM_CPPFLAGS = -I$(top_srcdir)/src
2
3EXTRA_DIST = preflow_graph.dim #input file for preflow_test.cc
4
5noinst_HEADERS = \
6        test_tools.h \
7        graph_test.h \
8        sym_graph_test.h \
9        map_test.h \
10        graph_utils_test.h \
11        heap_test.h
12
13check_PROGRAMS = \
14        bfs_test \
15        dfs_test \
16        dijkstra_test \
17        graph_test \
18        graph_wrapper_test \
19        graph_utils_test \
20        kruskal_test \
21        max_matching_test \
22        maps_test \
23        min_cost_flow_test \
24        suurballe_test \
25        path_test \
26        preflow_test \
27        test_tools_fail \
28        test_tools_pass \
29        time_measure_test \
30        unionfind_test \
31        undir_graph_test \
32        xy_test \
33        heap_test
34
35TESTS = $(check_PROGRAMS)
36XFAIL_TESTS = test_tools_fail
37
38bfs_test_SOURCES = bfs_test.cc
39dfs_test_SOURCES = dfs_test.cc
40dijkstra_test_SOURCES = dijkstra_test.cc
41graph_test_SOURCES = graph_test.cc
42graph_utils_test_SOURCES = graph_utils_test.cc
43graph_wrapper_test_SOURCES = graph_wrapper_test.cc
44kruskal_test_SOURCES = kruskal_test.cc
45maps_test_SOURCES = maps_test.cc
46min_cost_flow_test_SOURCES = min_cost_flow_test.cc
47max_matching_test_SOURCES = max_matching_test.cc
48suurballe_test_SOURCES = suurballe_test.cc
49path_test_SOURCES = path_test.cc
50preflow_test_SOURCES = preflow_test.cc
51time_measure_test_SOURCES = time_measure_test.cc
52test_tools_fail_SOURCES = test_tools_fail.cc
53test_tools_pass_SOURCES = test_tools_pass.cc
54unionfind_test_SOURCES = unionfind_test.cc
55xy_test_SOURCES = xy_test.cc
56undir_graph_test_SOURCES = undir_graph_test.cc
57heap_test_SOURCES = heap_test.cc
Note: See TracBrowser for help on using the repository browser.