COIN-OR::LEMON - Graph Library

Changeset 445:75a5df083951 in lemon-main for test


Ignore:
Timestamp:
01/08/09 18:19:26 (15 years ago)
Author:
Alpar Juttner <alpar@…>
Branch:
default
Parents:
440:88ed40ad0d4f (diff), 444:ba49101c9b07 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent.
Phase:
public
Message:

Merge

Location:
test
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • test/CMakeLists.txt

    r424 r445  
    2121  maps_test
    2222  max_matching_test
     23  radix_sort_test
    2324  path_test
    2425  preflow_test
  • test/CMakeLists.txt

    r441 r445  
    55SET(TESTS
    66  bfs_test
     7  circulation_test
    78  counter_test
    89  dfs_test
     
    1112  dim_test
    1213  error_test
     14  graph_adaptor_test
    1315  graph_copy_test
    1416  graph_test
    1517  graph_utils_test
     18  hao_orlin_test
    1619  heap_test
    1720  kruskal_test
    1821  maps_test
     22  max_matching_test
    1923  radix_sort_test
     24  path_test
     25  preflow_test
    2026  random_test
    21   path_test
     27  suurballe_test
    2228  time_measure_test
    2329  unionfind_test)
  • test/Makefile.am

    r440 r445  
    2626        test/path_test \
    2727        test/preflow_test \
     28        test/radix_sort_test \
    2829        test/random_test \
    2930        test/suurballe_test \
     
    5556test_path_test_SOURCES = test/path_test.cc
    5657test_preflow_test_SOURCES = test/preflow_test.cc
     58test_radix_sort_test_SOURCES = test/radix_sort_test.cc
    5759test_suurballe_test_SOURCES = test/suurballe_test.cc
    5860test_random_test_SOURCES = test/random_test.cc
  • test/Makefile.am

    r441 r445  
    44noinst_HEADERS += \
    55        test/graph_test.h \
    6         test/test_tools.h
     6        test/test_tools.h
    77
    88check_PROGRAMS += \
    99        test/bfs_test \
    10         test/counter_test \
     10        test/circulation_test \
     11        test/counter_test \
    1112        test/dfs_test \
    1213        test/digraph_test \
    1314        test/dijkstra_test \
    14         test/dim_test \
     15        test/dim_test \
    1516        test/error_test \
     17        test/graph_adaptor_test \
    1618        test/graph_copy_test \
    1719        test/graph_test \
    1820        test/graph_utils_test \
     21        test/hao_orlin_test \
    1922        test/heap_test \
    2023        test/kruskal_test \
    21         test/maps_test \
     24        test/maps_test \
     25        test/max_matching_test \
     26        test/path_test \
     27        test/preflow_test \
    2228        test/radix_sort_test \
    23         test/random_test \
    24         test/path_test \
    25         test/test_tools_fail \
    26         test/test_tools_pass \
    27         test/time_measure_test \
     29        test/random_test \
     30        test/suurballe_test \
     31        test/test_tools_fail \
     32        test/test_tools_pass \
     33        test/time_measure_test \
    2834        test/unionfind_test
    2935
     
    3238
    3339test_bfs_test_SOURCES = test/bfs_test.cc
     40test_circulation_test_SOURCES = test/circulation_test.cc
    3441test_counter_test_SOURCES = test/counter_test.cc
    3542test_dfs_test_SOURCES = test/dfs_test.cc
     
    3845test_dim_test_SOURCES = test/dim_test.cc
    3946test_error_test_SOURCES = test/error_test.cc
     47test_graph_adaptor_test_SOURCES = test/graph_adaptor_test.cc
    4048test_graph_copy_test_SOURCES = test/graph_copy_test.cc
    4149test_graph_test_SOURCES = test/graph_test.cc
     
    4351test_heap_test_SOURCES = test/heap_test.cc
    4452test_kruskal_test_SOURCES = test/kruskal_test.cc
     53test_hao_orlin_test_SOURCES = test/hao_orlin_test.cc
    4554test_maps_test_SOURCES = test/maps_test.cc
     55test_max_matching_test_SOURCES = test/max_matching_test.cc
    4656test_path_test_SOURCES = test/path_test.cc
     57test_preflow_test_SOURCES = test/preflow_test.cc
    4758test_radix_sort_test_SOURCES = test/radix_sort_test.cc
     59test_suurballe_test_SOURCES = test/suurballe_test.cc
    4860test_random_test_SOURCES = test/random_test.cc
    4961test_test_tools_fail_SOURCES = test/test_tools_fail.cc
Note: See TracChangeset for help on using the changeset viewer.