test/Makefile.am
author Balazs Dezso <deba@inf.elte.hu>
Sun, 20 Jan 2008 20:43:48 +0100
changeset 57 c1acf0018c0a
parent 32 ad7f593399b0
child 58 5f1f539f912f
permissions -rw-r--r--
Port ListDigraph and ListGraph from svn -r 3433
Details:
- port Digraph and Graph concepts
- port ListDigraph and ListGraph
- port Basic graph constructing tools
- port Digraph and Graph tests
     1 EXTRA_DIST += \
     2 	test/Makefile
     3 
     4 noinst_HEADERS += \
     5         test/test_tools.h
     6 
     7 check_PROGRAMS += \
     8 	test/digraph_test \
     9         test/dim_test \
    10 	test/graph_test \
    11         test/random_test \
    12         test/test_tools_fail \
    13         test/test_tools_pass
    14 
    15 TESTS += $(check_PROGRAMS)
    16 XFAIL_TESTS += test/test_tools_fail$(EXEEXT)
    17 
    18 test_digraph_test_SOURCES = test/digraph_test.cc
    19 test_dim_test_SOURCES = test/dim_test.cc
    20 test_graph_test_SOURCES = test/graph_test.cc
    21 test_random_test_SOURCES = test/random_test.cc
    22 test_test_tools_fail_SOURCES = test/test_tools_fail.cc
    23 test_test_tools_pass_SOURCES = test/test_tools_pass.cc