COIN-OR::LEMON - Graph Library

source: lemon-1.2/test/Makefile.am @ 227:33f8d69e642a

Last change on this file since 227:33f8d69e642a was 203:215bfc30b14f, checked in by Balazs Dezso <deba@…>, 16 years ago

Cleaning of heap test and bug fix in heap concept check (ticket #100)

  • The dijkstra heap test's digraph is inlined into the source file
  • The random sequences are fixed
  • The content of the header is moved to the source file
  • Only the binary heap is checked
File size: 1.6 KB
RevLine 
[1]1EXTRA_DIST += \
[146]2        test/CMakeLists.txt
[1]3
[4]4noinst_HEADERS += \
[171]5        test/graph_test.h \
6        test/graph_maps_test.h \
[4]7        test/test_tools.h
[10]8
[4]9check_PROGRAMS += \
[100]10        test/bfs_test \
[119]11        test/counter_test \
[100]12        test/dfs_test \
[57]13        test/digraph_test \
[170]14        test/dijkstra_test \
[8]15        test/dim_test \
[108]16        test/error_test \
[200]17        test/graph_copy_test \
[57]18        test/graph_test \
[139]19        test/graph_utils_test \
[203]20        test/heap_test \
[103]21        test/kruskal_test \
[25]22        test/maps_test \
[10]23        test/random_test \
[96]24        test/path_test \
[4]25        test/test_tools_fail \
[103]26        test/test_tools_pass \
[119]27        test/time_measure_test \
[103]28        test/unionfind_test
[10]29
[1]30TESTS += $(check_PROGRAMS)
31XFAIL_TESTS += test/test_tools_fail$(EXEEXT)
[4]32
[100]33test_bfs_test_SOURCES = test/bfs_test.cc
[119]34test_counter_test_SOURCES = test/counter_test.cc
[100]35test_dfs_test_SOURCES = test/dfs_test.cc
[57]36test_digraph_test_SOURCES = test/digraph_test.cc
[170]37test_dijkstra_test_SOURCES = test/dijkstra_test.cc
[8]38test_dim_test_SOURCES = test/dim_test.cc
[108]39test_error_test_SOURCES = test/error_test.cc
[200]40test_graph_copy_test_SOURCES = test/graph_copy_test.cc
[57]41test_graph_test_SOURCES = test/graph_test.cc
[139]42test_graph_utils_test_SOURCES = test/graph_utils_test.cc
[203]43test_heap_test_SOURCES = test/heap_test.cc
[103]44test_kruskal_test_SOURCES = test/kruskal_test.cc
[25]45test_maps_test_SOURCES = test/maps_test.cc
[96]46test_path_test_SOURCES = test/path_test.cc
[10]47test_random_test_SOURCES = test/random_test.cc
[4]48test_test_tools_fail_SOURCES = test/test_tools_fail.cc
49test_test_tools_pass_SOURCES = test/test_tools_pass.cc
[119]50test_time_measure_test_SOURCES = test/time_measure_test.cc
[103]51test_unionfind_test_SOURCES = test/unionfind_test.cc
Note: See TracBrowser for help on using the repository browser.