test/Makefile.am
author Alpar Juttner <alpar@cs.elte.hu>
Thu, 20 Mar 2008 21:59:35 +0000
changeset 104 cdbba181b786
parent 99 dbaa96cc1013
child 106 9ba2d265e191
permissions -rw-r--r--
Restored (and modified) StoreBoolMap (it was removed in 7ff1c348ae0c)

- also restored _maps_bits::IteratorTraits
- removes the Functor template parameter from StoreBoolMap
- doc changed a bit
ladanyi@1
     1
EXTRA_DIST += \
ladanyi@1
     2
	test/Makefile
ladanyi@1
     3
alpar@4
     4
noinst_HEADERS += \
alpar@58
     5
	test/digraph_test.h \
alpar@100
     6
	test/heap_test.h \
alpar@58
     7
	test/map_test.h \
alpar@4
     8
        test/test_tools.h
alpar@10
     9
alpar@4
    10
check_PROGRAMS += \
alpar@100
    11
	test/bfs_test \
alpar@100
    12
	test/dfs_test \
deba@57
    13
	test/digraph_test \
alpar@8
    14
        test/dim_test \
deba@57
    15
	test/graph_test \
alpar@25
    16
        test/maps_test \
alpar@10
    17
        test/random_test \
alpar@96
    18
        test/path_test \
alpar@4
    19
        test/test_tools_fail \
alpar@4
    20
        test/test_tools_pass
alpar@10
    21
ladanyi@1
    22
TESTS += $(check_PROGRAMS)
ladanyi@1
    23
XFAIL_TESTS += test/test_tools_fail$(EXEEXT)
alpar@4
    24
alpar@100
    25
test_bfs_test_SOURCES = test/bfs_test.cc
alpar@100
    26
test_dfs_test_SOURCES = test/dfs_test.cc
deba@57
    27
test_digraph_test_SOURCES = test/digraph_test.cc
alpar@8
    28
test_dim_test_SOURCES = test/dim_test.cc
kpeter@66
    29
#test_error_test_SOURCES = test/error_test.cc
deba@57
    30
test_graph_test_SOURCES = test/graph_test.cc
alpar@100
    31
# test_heap_test_SOURCES = test/heap_test.cc
alpar@25
    32
test_maps_test_SOURCES = test/maps_test.cc
alpar@96
    33
test_path_test_SOURCES = test/path_test.cc
alpar@10
    34
test_random_test_SOURCES = test/random_test.cc
alpar@4
    35
test_test_tools_fail_SOURCES = test/test_tools_fail.cc
alpar@4
    36
test_test_tools_pass_SOURCES = test/test_tools_pass.cc