COIN-OR::LEMON - Graph Library

source: lemon-0.x/src/test/Makefile.am @ 941:186aa53d2802

Last change on this file since 941:186aa53d2802 was 938:70e2886211d5, checked in by Alpar Juttner, 19 years ago

Many of ckeckCompileXYZ()'s are now in the corresponding skeleton headers.
(Tests for Symmetric Graphs are still to be moved)

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