test/Makefile.am
changeset 467 a1155a9e8e09
parent 458 7afc121e0689
parent 465 2b5496c62ccd
child 469 04c0631fd332
equal deleted inserted replaced
39:e51647a85786 41:11da1bfc1301
     4 noinst_HEADERS += \
     4 noinst_HEADERS += \
     5 	test/graph_test.h \
     5 	test/graph_test.h \
     6 	test/test_tools.h
     6 	test/test_tools.h
     7 
     7 
     8 check_PROGRAMS += \
     8 check_PROGRAMS += \
       
     9 	test/adaptors_test \
     9 	test/bfs_test \
    10 	test/bfs_test \
    10 	test/circulation_test \
    11 	test/circulation_test \
    11 	test/counter_test \
    12 	test/counter_test \
    12 	test/dfs_test \
    13 	test/dfs_test \
    13 	test/digraph_test \
    14 	test/digraph_test \
    14 	test/dijkstra_test \
    15 	test/dijkstra_test \
    15 	test/dim_test \
    16 	test/dim_test \
    16 	test/error_test \
    17 	test/error_test \
    17 	test/graph_adaptor_test \
       
    18 	test/graph_copy_test \
    18 	test/graph_copy_test \
    19 	test/graph_test \
    19 	test/graph_test \
    20 	test/graph_utils_test \
    20 	test/graph_utils_test \
    21 	test/hao_orlin_test \
    21 	test/hao_orlin_test \
    22 	test/heap_test \
    22 	test/heap_test \
    41 endif HAVE_MIP
    41 endif HAVE_MIP
    42 
    42 
    43 TESTS += $(check_PROGRAMS)
    43 TESTS += $(check_PROGRAMS)
    44 XFAIL_TESTS += test/test_tools_fail$(EXEEXT)
    44 XFAIL_TESTS += test/test_tools_fail$(EXEEXT)
    45 
    45 
       
    46 test_adaptors_test_SOURCES = test/adaptors_test.cc
    46 test_bfs_test_SOURCES = test/bfs_test.cc
    47 test_bfs_test_SOURCES = test/bfs_test.cc
    47 test_circulation_test_SOURCES = test/circulation_test.cc
    48 test_circulation_test_SOURCES = test/circulation_test.cc
    48 test_counter_test_SOURCES = test/counter_test.cc
    49 test_counter_test_SOURCES = test/counter_test.cc
    49 test_dfs_test_SOURCES = test/dfs_test.cc
    50 test_dfs_test_SOURCES = test/dfs_test.cc
    50 test_digraph_test_SOURCES = test/digraph_test.cc
    51 test_digraph_test_SOURCES = test/digraph_test.cc
    51 test_dijkstra_test_SOURCES = test/dijkstra_test.cc
    52 test_dijkstra_test_SOURCES = test/dijkstra_test.cc
    52 test_dim_test_SOURCES = test/dim_test.cc
    53 test_dim_test_SOURCES = test/dim_test.cc
    53 test_error_test_SOURCES = test/error_test.cc
    54 test_error_test_SOURCES = test/error_test.cc
    54 test_graph_adaptor_test_SOURCES = test/graph_adaptor_test.cc
       
    55 test_graph_copy_test_SOURCES = test/graph_copy_test.cc
    55 test_graph_copy_test_SOURCES = test/graph_copy_test.cc
    56 test_graph_test_SOURCES = test/graph_test.cc
    56 test_graph_test_SOURCES = test/graph_test.cc
    57 test_graph_utils_test_SOURCES = test/graph_utils_test.cc
    57 test_graph_utils_test_SOURCES = test/graph_utils_test.cc
    58 test_heap_test_SOURCES = test/heap_test.cc
    58 test_heap_test_SOURCES = test/heap_test.cc
    59 test_kruskal_test_SOURCES = test/kruskal_test.cc
    59 test_kruskal_test_SOURCES = test/kruskal_test.cc