test/Makefile.am
changeset 698 f9746e45246e
parent 649 76cbcb3e9bbb
child 770 432c54cec63c
child 797 30cb42e3e43a
child 869 636dadefe1e6
equal deleted inserted replaced
52:cd4c719ee69f 53:4543a0477908
     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/adaptors_test \
       
    10 	test/bellman_ford_test \
    10 	test/bfs_test \
    11 	test/bfs_test \
    11 	test/circulation_test \
    12 	test/circulation_test \
    12 	test/connectivity_test \
    13 	test/connectivity_test \
    13 	test/counter_test \
    14 	test/counter_test \
    14 	test/dfs_test \
    15 	test/dfs_test \
    50 
    51 
    51 TESTS += $(check_PROGRAMS)
    52 TESTS += $(check_PROGRAMS)
    52 XFAIL_TESTS += test/test_tools_fail$(EXEEXT)
    53 XFAIL_TESTS += test/test_tools_fail$(EXEEXT)
    53 
    54 
    54 test_adaptors_test_SOURCES = test/adaptors_test.cc
    55 test_adaptors_test_SOURCES = test/adaptors_test.cc
       
    56 test_bellman_ford_test_SOURCES = test/bellman_ford_test.cc
    55 test_bfs_test_SOURCES = test/bfs_test.cc
    57 test_bfs_test_SOURCES = test/bfs_test.cc
    56 test_circulation_test_SOURCES = test/circulation_test.cc
    58 test_circulation_test_SOURCES = test/circulation_test.cc
    57 test_counter_test_SOURCES = test/counter_test.cc
    59 test_counter_test_SOURCES = test/counter_test.cc
    58 test_connectivity_test_SOURCES = test/connectivity_test.cc
    60 test_connectivity_test_SOURCES = test/connectivity_test.cc
    59 test_dfs_test_SOURCES = test/dfs_test.cc
    61 test_dfs_test_SOURCES = test/dfs_test.cc