test/Makefile.am
author Peter Kovacs <kpeter@inf.elte.hu>
Tue, 18 Mar 2008 13:57:15 +0100
changeset 94 a4688e4138ec
parent 66 5f7a8570687d
parent 65 bfbc57a51fbb
child 99 dbaa96cc1013
child 103 b68a7e348e00
permissions -rw-r--r--
Fixes in the map concepts

- Now Value type needn't be default constructible.
- Extend the test file to check this.
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@58
     6
	test/map_test.h \
alpar@4
     7
        test/test_tools.h
alpar@10
     8
alpar@4
     9
check_PROGRAMS += \
deba@57
    10
	test/digraph_test \
alpar@8
    11
        test/dim_test \
deba@57
    12
	test/graph_test \
alpar@25
    13
        test/maps_test \
alpar@10
    14
        test/random_test \
alpar@4
    15
        test/test_tools_fail \
alpar@4
    16
        test/test_tools_pass
alpar@10
    17
ladanyi@1
    18
TESTS += $(check_PROGRAMS)
ladanyi@1
    19
XFAIL_TESTS += test/test_tools_fail$(EXEEXT)
alpar@4
    20
deba@57
    21
test_digraph_test_SOURCES = test/digraph_test.cc
alpar@8
    22
test_dim_test_SOURCES = test/dim_test.cc
kpeter@66
    23
#test_error_test_SOURCES = test/error_test.cc
deba@57
    24
test_graph_test_SOURCES = test/graph_test.cc
alpar@25
    25
test_maps_test_SOURCES = test/maps_test.cc
alpar@10
    26
test_random_test_SOURCES = test/random_test.cc
alpar@4
    27
test_test_tools_fail_SOURCES = test/test_tools_fail.cc
alpar@4
    28
test_test_tools_pass_SOURCES = test/test_tools_pass.cc