src/test/Makefile.am
author deba
Wed, 09 Mar 2005 14:10:21 +0000
changeset 1206 9c398137c2cb
parent 1094 da32bccc7c4d
child 1216 45f65dd610da
permissions -rw-r--r--
Increase test
Changing test graph
     1 AM_CPPFLAGS = -I$(top_srcdir)/src
     2 
     3 EXTRA_DIST = preflow_graph.dim #input file for preflow_test.cc
     4 
     5 noinst_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 
    13 check_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 
    35 TESTS = $(check_PROGRAMS)
    36 XFAIL_TESTS = test_tools_fail
    37 
    38 bfs_test_SOURCES = bfs_test.cc
    39 dfs_test_SOURCES = dfs_test.cc
    40 dijkstra_test_SOURCES = dijkstra_test.cc
    41 graph_test_SOURCES = graph_test.cc
    42 graph_utils_test_SOURCES = graph_utils_test.cc
    43 graph_wrapper_test_SOURCES = graph_wrapper_test.cc
    44 kruskal_test_SOURCES = kruskal_test.cc
    45 maps_test_SOURCES = maps_test.cc
    46 min_cost_flow_test_SOURCES = min_cost_flow_test.cc
    47 max_matching_test_SOURCES = max_matching_test.cc
    48 suurballe_test_SOURCES = suurballe_test.cc
    49 path_test_SOURCES = path_test.cc
    50 preflow_test_SOURCES = preflow_test.cc
    51 time_measure_test_SOURCES = time_measure_test.cc
    52 test_tools_fail_SOURCES = test_tools_fail.cc
    53 test_tools_pass_SOURCES = test_tools_pass.cc
    54 unionfind_test_SOURCES = unionfind_test.cc
    55 xy_test_SOURCES = xy_test.cc
    56 undir_graph_test_SOURCES = undir_graph_test.cc
    57 heap_test_SOURCES = heap_test.cc