test/Makefile.am
author deba
Tue, 24 Jan 2006 16:07:38 +0000
changeset 1901 723b2b81d900
parent 1847 7cbc12e42482
child 1909 2d806130e700
permissions -rw-r--r--
Lemon Graph Format uses label instead of id named map.
     1 AM_CPPFLAGS = -I$(top_srcdir) -fno-inline
     2 LDADD = $(top_builddir)/lemon/libemon.la
     3 
     4 EXTRA_DIST = preflow_graph.dim dijkstra_test.lgf
     5 
     6 noinst_HEADERS = \
     7 	test_tools.h \
     8 	graph_test.h \
     9 	map_test.h \
    10 	graph_utils_test.h \
    11 	heap_test.h
    12 
    13 
    14 check_PROGRAMS = \
    15 	all_pairs_shortest_path_test \
    16 	bfs_test \
    17 	counter_test \
    18 	dfs_test \
    19 	dijkstra_test \
    20 	graph_test \
    21 	graph_adaptor_test \
    22 	graph_utils_test \
    23 	kruskal_test \
    24 	maps_test \
    25 	matrix_maps_test \
    26 	max_matching_test \
    27 	min_cost_flow_test \
    28 	suurballe_test \
    29 	path_test \
    30 	preflow_test \
    31 	radix_sort_test \
    32 	test_tools_fail \
    33 	test_tools_pass \
    34 	time_measure_test \
    35 	unionfind_test \
    36 	undir_graph_test \
    37 	xy_test \
    38 	heap_test
    39 
    40 if HAVE_GLPK
    41 check_PROGRAMS += lp_test
    42 else !HAVE_GLPK
    43 if HAVE_CPLEX
    44 check_PROGRAMS += lp_test
    45 endif HAVE_CPLEX
    46 endif !HAVE_GLPK
    47 
    48 TESTS = $(check_PROGRAMS)
    49 XFAIL_TESTS = test_tools_fail$(EXEEXT)
    50 
    51 all_pairs_shortest_path_test_SOURCES = all_pairs_shortest_path_test.cc
    52 bfs_test_SOURCES = bfs_test.cc
    53 counter_test_SOURCES = counter_test.cc
    54 dfs_test_SOURCES = dfs_test.cc
    55 dijkstra_test_SOURCES = dijkstra_test.cc
    56 graph_test_SOURCES = graph_test.cc
    57 graph_utils_test_SOURCES = graph_utils_test.cc
    58 graph_adaptor_test_SOURCES = graph_adaptor_test.cc
    59 kruskal_test_SOURCES = kruskal_test.cc
    60 maps_test_SOURCES = maps_test.cc
    61 matrix_maps_test_SOURCES = matrix_maps_test.cc
    62 min_cost_flow_test_SOURCES = min_cost_flow_test.cc
    63 max_matching_test_SOURCES = max_matching_test.cc
    64 suurballe_test_SOURCES = suurballe_test.cc
    65 path_test_SOURCES = path_test.cc
    66 radix_sort_test_SOURCES = radix_sort_test.cc
    67 preflow_test_SOURCES = preflow_test.cc
    68 time_measure_test_SOURCES = time_measure_test.cc
    69 test_tools_fail_SOURCES = test_tools_fail.cc
    70 test_tools_pass_SOURCES = test_tools_pass.cc
    71 unionfind_test_SOURCES = unionfind_test.cc
    72 xy_test_SOURCES = xy_test.cc
    73 undir_graph_test_SOURCES = undir_graph_test.cc
    74 heap_test_SOURCES = heap_test.cc
    75 
    76 lp_test_SOURCES = lp_test.cc
    77 lp_test_CXXFLAGS = $(GLPK_CFLAGS) $(CPLEX_CFLAGS)