Changeset 469:04c0631fd332 in lemon-main for test
- Timestamp:
 - 01/12/09 14:37:37 (17 years ago)
 - Branch:
 - default
 - Children:
 - 470:81627fa1b007, 515:c35afa9e89e7
 - Parents:
 - 467:a1155a9e8e09 (diff), 468:68fe66e2b34a (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
 
- 
          CMakeLists.txt (modified) (1 diff)
 - 
          CMakeLists.txt (modified) (2 diffs)
 - 
          Makefile.am (modified) (2 diffs)
 - 
          Makefile.am (modified) (3 diffs)
 
 
Legend:
- Unmodified
 - Added
 - Removed
 
- 
        
test/CMakeLists.txt
r467 r469 13 13 dim_test 14 14 error_test 15 edge_set_test 15 16 graph_copy_test 16 17 graph_test  - 
        
test/CMakeLists.txt
r468 r469 4 4 5 5 SET(TESTS 6 adaptors_test 6 7 bfs_test 8 circulation_test 7 9 counter_test 8 10 dfs_test … … 18 20 heap_test 19 21 kruskal_test 22 lp_test 23 mip_test 20 24 maps_test 21 25 max_matching_test 26 radix_sort_test 27 path_test 28 preflow_test 22 29 random_test 23 path_test30 suurballe_test 24 31 time_measure_test 25 32 unionfind_test)  - 
        
test/Makefile.am
r467 r469 15 15 test/dijkstra_test \ 16 16 test/dim_test \ 17 test/edge_set_test \ 17 18 test/error_test \ 18 19 test/graph_copy_test \ … … 52 53 test_dijkstra_test_SOURCES = test/dijkstra_test.cc 53 54 test_dim_test_SOURCES = test/dim_test.cc 55 test_edge_set_test_SOURCES = test/edge_set_test.cc 54 56 test_error_test_SOURCES = test/error_test.cc 55 57 test_graph_copy_test_SOURCES = test/graph_copy_test.cc  - 
        
test/Makefile.am
r468 r469 1 1 EXTRA_DIST += \ 2 test/CMakeLists.txt \ 3 test/min_cost_flow_test.lgf \ 4 test/preflow_graph.lgf 2 test/CMakeLists.txt 5 3 6 4 noinst_HEADERS += \ 7 5 test/graph_test.h \ 8 test/test_tools.h6 test/test_tools.h 9 7 10 8 check_PROGRAMS += \ 9 test/adaptors_test \ 11 10 test/bfs_test \ 12 test/circulation_test \13 test/counter_test \11 test/circulation_test \ 12 test/counter_test \ 14 13 test/dfs_test \ 15 14 test/digraph_test \ 16 15 test/dijkstra_test \ 17 test/dim_test \16 test/dim_test \ 18 17 test/edge_set_test \ 19 18 test/error_test \ 20 test/graph_adaptor_test \21 19 test/graph_copy_test \ 22 20 test/graph_test \ 23 21 test/graph_utils_test \ 22 test/hao_orlin_test \ 24 23 test/heap_test \ 25 24 test/kruskal_test \ 26 test/hao_orlin_test \ 27 test/maps_test \ 25 test/maps_test \ 28 26 test/max_matching_test \ 29 test/random_test \ 30 test/path_test \ 31 test/preflow_test \ 32 test/suurballe_test \ 33 test/test_tools_fail \ 34 test/test_tools_pass \ 35 test/time_measure_test \ 27 test/path_test \ 28 test/preflow_test \ 29 test/radix_sort_test \ 30 test/random_test \ 31 test/suurballe_test \ 32 test/test_tools_fail \ 33 test/test_tools_pass \ 34 test/time_measure_test \ 36 35 test/unionfind_test 36 37 if HAVE_LP 38 check_PROGRAMS += test/lp_test 39 endif HAVE_LP 40 if HAVE_MIP 41 check_PROGRAMS += test/mip_test 42 endif HAVE_MIP 37 43 38 44 TESTS += $(check_PROGRAMS) 39 45 XFAIL_TESTS += test/test_tools_fail$(EXEEXT) 40 46 47 test_adaptors_test_SOURCES = test/adaptors_test.cc 41 48 test_bfs_test_SOURCES = test/bfs_test.cc 42 49 test_circulation_test_SOURCES = test/circulation_test.cc … … 48 55 test_edge_set_test_SOURCES = test/edge_set_test.cc 49 56 test_error_test_SOURCES = test/error_test.cc 50 test_graph_adaptor_test_SOURCES = test/graph_adaptor_test.cc51 57 test_graph_copy_test_SOURCES = test/graph_copy_test.cc 52 58 test_graph_test_SOURCES = test/graph_test.cc … … 55 61 test_kruskal_test_SOURCES = test/kruskal_test.cc 56 62 test_hao_orlin_test_SOURCES = test/hao_orlin_test.cc 63 test_lp_test_SOURCES = test/lp_test.cc 57 64 test_maps_test_SOURCES = test/maps_test.cc 65 test_mip_test_SOURCES = test/mip_test.cc 58 66 test_max_matching_test_SOURCES = test/max_matching_test.cc 59 67 test_path_test_SOURCES = test/path_test.cc 60 68 test_preflow_test_SOURCES = test/preflow_test.cc 69 test_radix_sort_test_SOURCES = test/radix_sort_test.cc 61 70 test_suurballe_test_SOURCES = test/suurballe_test.cc 62 71 test_random_test_SOURCES = test/random_test.cc  
Note: See TracChangeset
          for help on using the changeset viewer.
      
