test/Makefile.am
author Balazs Dezso <deba@inf.elte.hu>
Mon, 08 Dec 2008 11:38:02 +0100
changeset 491 68fe66e2b34a
parent 434 ad483acf1654
child 492 04c0631fd332
permissions -rw-r--r--
ArcSet and EdgeSet ports from SVN 3489 (ticket #67)
ladanyi@1
     1
EXTRA_DIST += \
alpar@357
     2
	test/CMakeLists.txt \
alpar@404
     3
        test/min_cost_flow_test.lgf \
alpar@404
     4
        test/preflow_graph.lgf
ladanyi@1
     5
alpar@4
     6
noinst_HEADERS += \
kpeter@171
     7
	test/graph_test.h \
alpar@4
     8
        test/test_tools.h
alpar@10
     9
alpar@4
    10
check_PROGRAMS += \
alpar@100
    11
	test/bfs_test \
alpar@415
    12
        test/circulation_test \
alpar@119
    13
        test/counter_test \
alpar@100
    14
	test/dfs_test \
deba@57
    15
	test/digraph_test \
kpeter@170
    16
	test/dijkstra_test \
alpar@8
    17
        test/dim_test \
deba@491
    18
	test/edge_set_test \
deba@108
    19
	test/error_test \
deba@430
    20
	test/graph_adaptor_test \
deba@200
    21
	test/graph_copy_test \
deba@57
    22
	test/graph_test \
deba@139
    23
	test/graph_utils_test \
deba@203
    24
	test/heap_test \
alpar@103
    25
	test/kruskal_test \
deba@426
    26
	test/hao_orlin_test \
alpar@25
    27
        test/maps_test \
deba@338
    28
	test/max_matching_test \
alpar@10
    29
        test/random_test \
alpar@96
    30
        test/path_test \
alpar@404
    31
        test/preflow_test \
alpar@357
    32
        test/suurballe_test \
alpar@4
    33
        test/test_tools_fail \
alpar@103
    34
        test/test_tools_pass \
alpar@119
    35
        test/time_measure_test \
alpar@103
    36
	test/unionfind_test
alpar@10
    37
ladanyi@1
    38
TESTS += $(check_PROGRAMS)
ladanyi@1
    39
XFAIL_TESTS += test/test_tools_fail$(EXEEXT)
alpar@4
    40
alpar@100
    41
test_bfs_test_SOURCES = test/bfs_test.cc
alpar@415
    42
test_circulation_test_SOURCES = test/circulation_test.cc
alpar@119
    43
test_counter_test_SOURCES = test/counter_test.cc
alpar@100
    44
test_dfs_test_SOURCES = test/dfs_test.cc
deba@57
    45
test_digraph_test_SOURCES = test/digraph_test.cc
kpeter@170
    46
test_dijkstra_test_SOURCES = test/dijkstra_test.cc
alpar@8
    47
test_dim_test_SOURCES = test/dim_test.cc
deba@491
    48
test_edge_set_test_SOURCES = test/edge_set_test.cc
deba@108
    49
test_error_test_SOURCES = test/error_test.cc
deba@430
    50
test_graph_adaptor_test_SOURCES = test/graph_adaptor_test.cc
deba@200
    51
test_graph_copy_test_SOURCES = test/graph_copy_test.cc
deba@57
    52
test_graph_test_SOURCES = test/graph_test.cc
deba@139
    53
test_graph_utils_test_SOURCES = test/graph_utils_test.cc
deba@203
    54
test_heap_test_SOURCES = test/heap_test.cc
alpar@103
    55
test_kruskal_test_SOURCES = test/kruskal_test.cc
deba@426
    56
test_hao_orlin_test_SOURCES = test/hao_orlin_test.cc
alpar@25
    57
test_maps_test_SOURCES = test/maps_test.cc
deba@338
    58
test_max_matching_test_SOURCES = test/max_matching_test.cc
alpar@96
    59
test_path_test_SOURCES = test/path_test.cc
alpar@404
    60
test_preflow_test_SOURCES = test/preflow_test.cc
alpar@357
    61
test_suurballe_test_SOURCES = test/suurballe_test.cc
alpar@10
    62
test_random_test_SOURCES = test/random_test.cc
alpar@4
    63
test_test_tools_fail_SOURCES = test/test_tools_fail.cc
alpar@4
    64
test_test_tools_pass_SOURCES = test/test_tools_pass.cc
alpar@119
    65
test_time_measure_test_SOURCES = test/time_measure_test.cc
alpar@103
    66
test_unionfind_test_SOURCES = test/unionfind_test.cc