Changeset 874:d8ea85825e02 in lemon-main for test
- Timestamp:
- 03/16/10 21:27:35 (15 years ago)
- Branch:
- default
- Parents:
- 873:23da1b807280 (diff), 872: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
- Location:
- test
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
test/CMakeLists.txt
r869 r874 34 34 min_cost_arborescence_test 35 35 min_cost_flow_test 36 min_mean_cycle_test 36 37 path_test 38 planarity_test 37 39 preflow_test 38 40 radix_sort_test -
test/CMakeLists.txt
r799 r874 22 22 error_test 23 23 euler_test 24 fractional_matching_test 24 25 gomory_hu_test 25 26 graph_copy_test -
test/Makefile.am
r869 r874 1 if USE_VALGRIND 2 TESTS_ENVIRONMENT=$(top_srcdir)/scripts/valgrind-wrapper.sh 3 endif 4 1 5 EXTRA_DIST += \ 2 6 test/CMakeLists.txt … … 32 36 test/min_cost_arborescence_test \ 33 37 test/min_cost_flow_test \ 38 test/min_mean_cycle_test \ 34 39 test/path_test \ 40 test/planarity_test \ 35 41 test/preflow_test \ 36 42 test/radix_sort_test \ … … 81 87 test_min_cost_arborescence_test_SOURCES = test/min_cost_arborescence_test.cc 82 88 test_min_cost_flow_test_SOURCES = test/min_cost_flow_test.cc 89 test_min_mean_cycle_test_SOURCES = test/min_mean_cycle_test.cc 83 90 test_path_test_SOURCES = test/path_test.cc 91 test_planarity_test_SOURCES = test/planarity_test.cc 84 92 test_preflow_test_SOURCES = test/preflow_test.cc 85 93 test_radix_sort_test_SOURCES = test/radix_sort_test.cc -
test/Makefile.am
r799 r874 24 24 test/error_test \ 25 25 test/euler_test \ 26 test/fractional_matching_test \ 26 27 test/gomory_hu_test \ 27 28 test/graph_copy_test \ … … 72 73 test_error_test_SOURCES = test/error_test.cc 73 74 test_euler_test_SOURCES = test/euler_test.cc 75 test_fractional_matching_test_SOURCES = test/fractional_matching_test.cc 74 76 test_gomory_hu_test_SOURCES = test/gomory_hu_test.cc 75 77 test_graph_copy_test_SOURCES = test/graph_copy_test.cc
Note: See TracChangeset
for help on using the changeset viewer.