COIN-OR::LEMON - Graph Library

source: lemon-0.x/src/test/Makefile.am @ 961:289d80c33f04

Last change on this file since 961:289d80c33f04 was 961:289d80c33f04, checked in by Mihaly Barasz, 19 years ago
  • Somewhat less redundant and a bit more correct graph concepts.
  • graph_wrapper_test does not compile
File size: 1.2 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
12check_PROGRAMS = \
13        bfs_test \
14        dfs_test \
15        dijkstra_test \
16        graph_test \
17        graph_utils_test \
18        kruskal_test \
19        min_cost_flow_test \
20        suurballe_test \
21        path_test \
22        preflow_test \
23        test_tools_fail \
24        test_tools_pass \
25        time_measure_test \
26        unionfind_test \
27        xy_test
28
29TESTS = $(check_PROGRAMS)
30XFAIL_TESTS = test_tools_fail
31
32bfs_test_SOURCES = bfs_test.cc
33dfs_test_SOURCES = dfs_test.cc
34dijkstra_test_SOURCES = dijkstra_test.cc
35graph_test_SOURCES = graph_test.cc
36graph_utils_test_SOURCES = graph_utils_test.cc
37graph_wrapper_test_SOURCES = graph_wrapper_test.cc
38kruskal_test_SOURCES = kruskal_test.cc
39min_cost_flow_test_SOURCES = min_cost_flow_test.cc
40suurballe_test_SOURCES = suurballe_test.cc
41path_test_SOURCES = path_test.cc
42preflow_test_SOURCES = preflow_test.cc
43time_measure_test_SOURCES = time_measure_test.cc
44test_tools_fail_SOURCES = test_tools_fail.cc
45test_tools_pass_SOURCES = test_tools_pass.cc
46unionfind_test_SOURCES = unionfind_test.cc
47xy_test_SOURCES = xy_test.cc
48
Note: See TracBrowser for help on using the repository browser.