COIN-OR::LEMON - Graph Library

Changeset 953:d8ea85825e02 in lemon for test


Ignore:
Timestamp:
03/16/10 21:27:35 (14 years ago)
Author:
Alpar Juttner <alpar@…>
Branch:
default
Parents:
952:23da1b807280 (diff), 951:41d7ac528c3a (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 #314

Location:
test
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • test/CMakeLists.txt

    r948 r953  
    3434  min_cost_arborescence_test
    3535  min_cost_flow_test
     36  min_mean_cycle_test
    3637  path_test
     38  planarity_test
    3739  preflow_test
    3840  radix_sort_test
  • test/CMakeLists.txt

    r863 r953  
    2222  error_test
    2323  euler_test
     24  fractional_matching_test
    2425  gomory_hu_test
    2526  graph_copy_test
  • test/Makefile.am

    r948 r953  
     1if USE_VALGRIND
     2TESTS_ENVIRONMENT=$(top_srcdir)/scripts/valgrind-wrapper.sh
     3endif
     4
    15EXTRA_DIST += \
    26        test/CMakeLists.txt
     
    3236        test/min_cost_arborescence_test \
    3337        test/min_cost_flow_test \
     38        test/min_mean_cycle_test \
    3439        test/path_test \
     40        test/planarity_test \
    3541        test/preflow_test \
    3642        test/radix_sort_test \
     
    8187test_min_cost_arborescence_test_SOURCES = test/min_cost_arborescence_test.cc
    8288test_min_cost_flow_test_SOURCES = test/min_cost_flow_test.cc
     89test_min_mean_cycle_test_SOURCES = test/min_mean_cycle_test.cc
    8390test_path_test_SOURCES = test/path_test.cc
     91test_planarity_test_SOURCES = test/planarity_test.cc
    8492test_preflow_test_SOURCES = test/preflow_test.cc
    8593test_radix_sort_test_SOURCES = test/radix_sort_test.cc
  • test/Makefile.am

    r863 r953  
    2424        test/error_test \
    2525        test/euler_test \
     26        test/fractional_matching_test \
    2627        test/gomory_hu_test \
    2728        test/graph_copy_test \
     
    7273test_error_test_SOURCES = test/error_test.cc
    7374test_euler_test_SOURCES = test/euler_test.cc
     75test_fractional_matching_test_SOURCES = test/fractional_matching_test.cc
    7476test_gomory_hu_test_SOURCES = test/gomory_hu_test.cc
    7577test_graph_copy_test_SOURCES = test/graph_copy_test.cc
Note: See TracChangeset for help on using the changeset viewer.