Changeset 942:2b6bffe0e7e8 in lemon-1.2 for test/Makefile.am
- Timestamp:
- 12/20/11 18:15:14 (13 years ago)
- Branch:
- default
- Parents:
- 941:7c4ba7daaf5f (diff), 915:633956ca9421 (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
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
test/Makefile.am
r874 r942 32 32 test/heap_test \ 33 33 test/kruskal_test \ 34 test/lgf_test \ 34 35 test/maps_test \ 35 36 test/matching_test \ … … 81 82 test_kruskal_test_SOURCES = test/kruskal_test.cc 82 83 test_hao_orlin_test_SOURCES = test/hao_orlin_test.cc 84 test_lgf_test_SOURCES = test/lgf_test.cc 83 85 test_lp_test_SOURCES = test/lp_test.cc 84 86 test_maps_test_SOURCES = test/maps_test.cc -
test/Makefile.am
r937 r942 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 … … 8 12 check_PROGRAMS += \ 9 13 test/adaptors_test \ 14 test/bellman_ford_test \ 10 15 test/bfs_test \ 11 16 test/circulation_test \ … … 19 24 test/error_test \ 20 25 test/euler_test \ 26 test/fractional_matching_test \ 21 27 test/gomory_hu_test \ 22 28 test/graph_copy_test \ … … 31 37 test/min_cost_arborescence_test \ 32 38 test/min_cost_flow_test \ 39 test/min_mean_cycle_test \ 33 40 test/path_test \ 41 test/planarity_test \ 34 42 test/preflow_test \ 35 43 test/radix_sort_test \ … … 54 62 55 63 test_adaptors_test_SOURCES = test/adaptors_test.cc 64 test_bellman_ford_test_SOURCES = test/bellman_ford_test.cc 56 65 test_bfs_test_SOURCES = test/bfs_test.cc 57 66 test_circulation_test_SOURCES = test/circulation_test.cc … … 65 74 test_error_test_SOURCES = test/error_test.cc 66 75 test_euler_test_SOURCES = test/euler_test.cc 76 test_fractional_matching_test_SOURCES = test/fractional_matching_test.cc 67 77 test_gomory_hu_test_SOURCES = test/gomory_hu_test.cc 68 78 test_graph_copy_test_SOURCES = test/graph_copy_test.cc … … 79 89 test_min_cost_arborescence_test_SOURCES = test/min_cost_arborescence_test.cc 80 90 test_min_cost_flow_test_SOURCES = test/min_cost_flow_test.cc 91 test_min_mean_cycle_test_SOURCES = test/min_mean_cycle_test.cc 81 92 test_path_test_SOURCES = test/path_test.cc 93 test_planarity_test_SOURCES = test/planarity_test.cc 82 94 test_preflow_test_SOURCES = test/preflow_test.cc 83 95 test_radix_sort_test_SOURCES = test/radix_sort_test.cc
Note: See TracChangeset
for help on using the changeset viewer.