test/Makefile.am
author Alpar Juttner <alpar@cs.elte.hu>
Thu, 24 Jan 2008 11:31:19 +0000
changeset 96 b55e501a90ee
parent 58 5f1f539f912f
child 99 dbaa96cc1013
permissions -rw-r--r--
Path related files ported from svn -r3435
but ItemReader/Writer for Path (originally belonging to path_utils.h)
hasn't ported yet.
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@10
    13
        test/random_test \
alpar@96
    14
        test/path_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
deba@57
    23
test_graph_test_SOURCES = test/graph_test.cc
alpar@96
    24
test_path_test_SOURCES = test/path_test.cc
alpar@10
    25
test_random_test_SOURCES = test/random_test.cc
alpar@4
    26
test_test_tools_fail_SOURCES = test/test_tools_fail.cc
alpar@4
    27
test_test_tools_pass_SOURCES = test/test_tools_pass.cc