COIN-OR::LEMON - Graph Library

Changeset 467:a1155a9e8e09 in lemon-1.2 for test


Ignore:
Timestamp:
01/12/09 14:18:03 (15 years ago)
Author:
Alpar Juttner <alpar@…>
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
Message:

Merge

Location:
test
Files:
1 deleted
4 edited

Legend:

Unmodified
Added
Removed
  • test/CMakeLists.txt

    r458 r467  
    44
    55SET(TESTS
     6  adaptors_test
    67  bfs_test
    78  circulation_test
     
    1213  dim_test
    1314  error_test
    14   graph_adaptor_test
    1515  graph_copy_test
    1616  graph_test
  • test/CMakeLists.txt

    r465 r467  
    1919  heap_test
    2020  kruskal_test
     21  lp_test
     22  mip_test
    2123  maps_test
    2224  max_matching_test
  • test/Makefile.am

    r458 r467  
    77
    88check_PROGRAMS += \
     9        test/adaptors_test \
    910        test/bfs_test \
    1011        test/circulation_test \
     
    1516        test/dim_test \
    1617        test/error_test \
    17         test/graph_adaptor_test \
    1818        test/graph_copy_test \
    1919        test/graph_test \
     
    4444XFAIL_TESTS += test/test_tools_fail$(EXEEXT)
    4545
     46test_adaptors_test_SOURCES = test/adaptors_test.cc
    4647test_bfs_test_SOURCES = test/bfs_test.cc
    4748test_circulation_test_SOURCES = test/circulation_test.cc
     
    5253test_dim_test_SOURCES = test/dim_test.cc
    5354test_error_test_SOURCES = test/error_test.cc
    54 test_graph_adaptor_test_SOURCES = test/graph_adaptor_test.cc
    5555test_graph_copy_test_SOURCES = test/graph_copy_test.cc
    5656test_graph_test_SOURCES = test/graph_test.cc
  • test/Makefile.am

    r465 r467  
    3434        test/unionfind_test
    3535
     36if HAVE_LP
     37check_PROGRAMS += test/lp_test
     38endif HAVE_LP
     39if HAVE_MIP
     40check_PROGRAMS += test/mip_test
     41endif HAVE_MIP
     42
    3643TESTS += $(check_PROGRAMS)
    3744XFAIL_TESTS += test/test_tools_fail$(EXEEXT)
     
    5259test_kruskal_test_SOURCES = test/kruskal_test.cc
    5360test_hao_orlin_test_SOURCES = test/hao_orlin_test.cc
     61test_lp_test_SOURCES = test/lp_test.cc
    5462test_maps_test_SOURCES = test/maps_test.cc
     63test_mip_test_SOURCES = test/mip_test.cc
    5564test_max_matching_test_SOURCES = test/max_matching_test.cc
    5665test_path_test_SOURCES = test/path_test.cc
Note: See TracChangeset for help on using the changeset viewer.