Changeset 799:6be1f9bd2ac0 in lemon-main for test
- Timestamp:
- 12/09/09 11:14:06 (15 years ago)
- Branch:
- default
- Children:
- 800:28c7ad6f8d91, 834:207ba6c0f2e4
- Parents:
- 798:58c330ad0b5c (diff), 796:9cc6e98c487d (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
r770 r799 35 35 min_mean_cycle_test 36 36 path_test 37 planarity_test 37 38 preflow_test 38 39 radix_sort_test -
test/CMakeLists.txt
r797 r799 33 33 min_cost_arborescence_test 34 34 min_cost_flow_test 35 min_mean_cycle_test 35 36 path_test 36 37 planarity_test -
test/Makefile.am
r793 r799 37 37 test/min_mean_cycle_test \ 38 38 test/path_test \ 39 test/planarity_test \ 39 40 test/preflow_test \ 40 41 test/radix_sort_test \ … … 86 87 test_min_mean_cycle_test_SOURCES = test/min_mean_cycle_test.cc 87 88 test_path_test_SOURCES = test/path_test.cc 89 test_planarity_test_SOURCES = test/planarity_test.cc 88 90 test_preflow_test_SOURCES = test/preflow_test.cc 89 91 test_radix_sort_test_SOURCES = test/radix_sort_test.cc -
test/Makefile.am
r797 r799 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 … … 31 35 test/min_cost_arborescence_test \ 32 36 test/min_cost_flow_test \ 37 test/min_mean_cycle_test \ 33 38 test/path_test \ 34 39 test/planarity_test \ … … 80 85 test_min_cost_arborescence_test_SOURCES = test/min_cost_arborescence_test.cc 81 86 test_min_cost_flow_test_SOURCES = test/min_cost_flow_test.cc 87 test_min_mean_cycle_test_SOURCES = test/min_mean_cycle_test.cc 82 88 test_path_test_SOURCES = test/path_test.cc 83 89 test_planarity_test_SOURCES = test/planarity_test.cc
Note: See TracChangeset
for help on using the changeset viewer.