COIN-OR::LEMON - Graph Library

source: lemon-0.x/src/test/Makefile.am @ 1160:d9c32f713cad

Last change on this file since 1160:d9c32f713cad was 1094:da32bccc7c4d, checked in by jacint, 19 years ago
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
12check_PROGRAMS = \
13        bfs_test \
14        dfs_test \
15        dijkstra_test \
16        graph_test \
17        graph_wrapper_test \
18        graph_utils_test \
19        kruskal_test \
20        max_matching_test \
21        maps_test \
22        min_cost_flow_test \
23        suurballe_test \
24        path_test \
25        preflow_test \
26        test_tools_fail \
27        test_tools_pass \
28        time_measure_test \
29        unionfind_test \
30        undir_graph_test \
31        xy_test
32
33TESTS = $(check_PROGRAMS)
34XFAIL_TESTS = test_tools_fail
35
36bfs_test_SOURCES = bfs_test.cc
37dfs_test_SOURCES = dfs_test.cc
38dijkstra_test_SOURCES = dijkstra_test.cc
39graph_test_SOURCES = graph_test.cc
40graph_utils_test_SOURCES = graph_utils_test.cc
41graph_wrapper_test_SOURCES = graph_wrapper_test.cc
42kruskal_test_SOURCES = kruskal_test.cc
43maps_test_SOURCES = maps_test.cc
44min_cost_flow_test_SOURCES = min_cost_flow_test.cc
45max_matching_test_SOURCES = max_matching_test.cc
46suurballe_test_SOURCES = suurballe_test.cc
47path_test_SOURCES = path_test.cc
48preflow_test_SOURCES = preflow_test.cc
49time_measure_test_SOURCES = time_measure_test.cc
50test_tools_fail_SOURCES = test_tools_fail.cc
51test_tools_pass_SOURCES = test_tools_pass.cc
52unionfind_test_SOURCES = unionfind_test.cc
53xy_test_SOURCES = xy_test.cc
54undir_graph_test_SOURCES = undir_graph_test.cc
55
Note: See TracBrowser for help on using the repository browser.