COIN-OR::LEMON - Graph Library

Ticket #67: adap3-rename-test-2b5496c62ccd.patch

File adap3-rename-test-2b5496c62ccd.patch, 1.8 KB (added by Peter Kovacs, 15 years ago)
  • test/CMakeLists.txt

    # HG changeset patch
    # User Peter Kovacs <kpeter@inf.elte.hu>
    # Date 1231744684 -3600
    # Node ID 2b5496c62ccd49394f963220ebbab953f1ebc417
    # Parent  acfb0f24d17825ed47b1e1882232bba3c292113c
    Rename graph_adaptor_test.cc to adaptors_test.cc (#67)
    
    diff --git a/test/CMakeLists.txt b/test/CMakeLists.txt
    a b  
    33LINK_DIRECTORIES(${CMAKE_BINARY_DIR}/lemon)
    44
    55SET(TESTS
     6  adaptors_test
    67  bfs_test
    78  circulation_test
    89  counter_test
     
    1112  dijkstra_test
    1213  dim_test
    1314  error_test
    14   graph_adaptor_test
    1515  graph_copy_test
    1616  graph_test
    1717  graph_utils_test
  • test/Makefile.am

    diff --git a/test/Makefile.am b/test/Makefile.am
    a b  
    66        test/test_tools.h
    77
    88check_PROGRAMS += \
     9        test/adaptors_test \
    910        test/bfs_test \
    1011        test/circulation_test \
    1112        test/counter_test \
     
    1415        test/dijkstra_test \
    1516        test/dim_test \
    1617        test/error_test \
    17         test/graph_adaptor_test \
    1818        test/graph_copy_test \
    1919        test/graph_test \
    2020        test/graph_utils_test \
     
    3636TESTS += $(check_PROGRAMS)
    3737XFAIL_TESTS += test/test_tools_fail$(EXEEXT)
    3838
     39test_adaptors_test_SOURCES = test/adaptors_test.cc
    3940test_bfs_test_SOURCES = test/bfs_test.cc
    4041test_circulation_test_SOURCES = test/circulation_test.cc
    4142test_counter_test_SOURCES = test/counter_test.cc
     
    4445test_dijkstra_test_SOURCES = test/dijkstra_test.cc
    4546test_dim_test_SOURCES = test/dim_test.cc
    4647test_error_test_SOURCES = test/error_test.cc
    47 test_graph_adaptor_test_SOURCES = test/graph_adaptor_test.cc
    4848test_graph_copy_test_SOURCES = test/graph_copy_test.cc
    4949test_graph_test_SOURCES = test/graph_test.cc
    5050test_graph_utils_test_SOURCES = test/graph_utils_test.cc