Changeset 467:a1155a9e8e09 in lemon-1.1 for test
- Timestamp:
- 01/12/09 14:18:03 (16 years ago)
- Branch:
- default
- Parents:
- 462:9b082b3fb33f (diff), 466:4f1431aeef42 (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:
-
- 1 deleted
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
test/CMakeLists.txt
r458 r467 4 4 5 5 SET(TESTS 6 adaptors_test 6 7 bfs_test 7 8 circulation_test … … 12 13 dim_test 13 14 error_test 14 graph_adaptor_test15 15 graph_copy_test 16 16 graph_test -
test/CMakeLists.txt
r465 r467 19 19 heap_test 20 20 kruskal_test 21 lp_test 22 mip_test 21 23 maps_test 22 24 max_matching_test -
test/Makefile.am
r458 r467 7 7 8 8 check_PROGRAMS += \ 9 test/adaptors_test \ 9 10 test/bfs_test \ 10 11 test/circulation_test \ … … 15 16 test/dim_test \ 16 17 test/error_test \ 17 test/graph_adaptor_test \18 18 test/graph_copy_test \ 19 19 test/graph_test \ … … 44 44 XFAIL_TESTS += test/test_tools_fail$(EXEEXT) 45 45 46 test_adaptors_test_SOURCES = test/adaptors_test.cc 46 47 test_bfs_test_SOURCES = test/bfs_test.cc 47 48 test_circulation_test_SOURCES = test/circulation_test.cc … … 52 53 test_dim_test_SOURCES = test/dim_test.cc 53 54 test_error_test_SOURCES = test/error_test.cc 54 test_graph_adaptor_test_SOURCES = test/graph_adaptor_test.cc55 55 test_graph_copy_test_SOURCES = test/graph_copy_test.cc 56 56 test_graph_test_SOURCES = test/graph_test.cc -
test/Makefile.am
r465 r467 34 34 test/unionfind_test 35 35 36 if HAVE_LP 37 check_PROGRAMS += test/lp_test 38 endif HAVE_LP 39 if HAVE_MIP 40 check_PROGRAMS += test/mip_test 41 endif HAVE_MIP 42 36 43 TESTS += $(check_PROGRAMS) 37 44 XFAIL_TESTS += test/test_tools_fail$(EXEEXT) … … 52 59 test_kruskal_test_SOURCES = test/kruskal_test.cc 53 60 test_hao_orlin_test_SOURCES = test/hao_orlin_test.cc 61 test_lp_test_SOURCES = test/lp_test.cc 54 62 test_maps_test_SOURCES = test/maps_test.cc 63 test_mip_test_SOURCES = test/mip_test.cc 55 64 test_max_matching_test_SOURCES = test/max_matching_test.cc 56 65 test_path_test_SOURCES = test/path_test.cc
Note: See TracChangeset
for help on using the changeset viewer.