test/Makefile.am
author Peter Kovacs <kpeter@inf.elte.hu>
Sun, 03 Aug 2008 13:34:57 +0200
changeset 244 c30731a37f91
parent 200 c0e2c043c060
child 228 b6732e0d38c5
permissions -rw-r--r--
Many improvements in bfs.h, dfs.h and dijkstra.h
- Add run() function to Bfs and run(s,t) function to DfsVisit.
- Add debug checking to addSource() function of Dfs and DfsVisit.
- Add a few missing named parameters (according to \todo notes).
- Small fixes in the code (e.g. missing derivations).
- Many doc improvements.
- Remove \todo and \warning comments which are no longer valid.
- Remove \author commands (see ticket #39).
- Fixes in the the doc (e.g. wrong references).
- Hide the doc of most of the private and protected members.
- Use public typedefs instead of template parameters in public functions.
- Use better parameter names for some functions.
- Other small changes to make the doc more uniform.
ladanyi@1
     1
EXTRA_DIST += \
ladanyi@146
     2
	test/CMakeLists.txt
ladanyi@1
     3
alpar@4
     4
noinst_HEADERS += \
kpeter@171
     5
	test/graph_test.h \
kpeter@171
     6
	test/graph_maps_test.h \
alpar@4
     7
        test/test_tools.h
alpar@10
     8
alpar@4
     9
check_PROGRAMS += \
alpar@100
    10
	test/bfs_test \
alpar@119
    11
        test/counter_test \
alpar@100
    12
	test/dfs_test \
deba@57
    13
	test/digraph_test \
kpeter@170
    14
	test/dijkstra_test \
alpar@8
    15
        test/dim_test \
deba@108
    16
	test/error_test \
deba@200
    17
	test/graph_copy_test \
deba@57
    18
	test/graph_test \
deba@139
    19
	test/graph_utils_test \
deba@203
    20
	test/heap_test \
alpar@103
    21
	test/kruskal_test \
alpar@25
    22
        test/maps_test \
alpar@10
    23
        test/random_test \
alpar@96
    24
        test/path_test \
alpar@4
    25
        test/test_tools_fail \
alpar@103
    26
        test/test_tools_pass \
alpar@119
    27
        test/time_measure_test \
alpar@103
    28
	test/unionfind_test
alpar@10
    29
ladanyi@1
    30
TESTS += $(check_PROGRAMS)
ladanyi@1
    31
XFAIL_TESTS += test/test_tools_fail$(EXEEXT)
alpar@4
    32
alpar@100
    33
test_bfs_test_SOURCES = test/bfs_test.cc
alpar@119
    34
test_counter_test_SOURCES = test/counter_test.cc
alpar@100
    35
test_dfs_test_SOURCES = test/dfs_test.cc
deba@57
    36
test_digraph_test_SOURCES = test/digraph_test.cc
kpeter@170
    37
test_dijkstra_test_SOURCES = test/dijkstra_test.cc
alpar@8
    38
test_dim_test_SOURCES = test/dim_test.cc
deba@108
    39
test_error_test_SOURCES = test/error_test.cc
deba@200
    40
test_graph_copy_test_SOURCES = test/graph_copy_test.cc
deba@57
    41
test_graph_test_SOURCES = test/graph_test.cc
deba@139
    42
test_graph_utils_test_SOURCES = test/graph_utils_test.cc
deba@203
    43
test_heap_test_SOURCES = test/heap_test.cc
alpar@103
    44
test_kruskal_test_SOURCES = test/kruskal_test.cc
alpar@25
    45
test_maps_test_SOURCES = test/maps_test.cc
alpar@96
    46
test_path_test_SOURCES = test/path_test.cc
alpar@10
    47
test_random_test_SOURCES = test/random_test.cc
alpar@4
    48
test_test_tools_fail_SOURCES = test/test_tools_fail.cc
alpar@4
    49
test_test_tools_pass_SOURCES = test/test_tools_pass.cc
alpar@119
    50
test_time_measure_test_SOURCES = test/time_measure_test.cc
alpar@103
    51
test_unionfind_test_SOURCES = test/unionfind_test.cc