# HG changeset patch # User Peter Kovacs # Date 2009-01-12 08:18:04 # 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/test/CMakeLists.txt +++ b/test/CMakeLists.txt @@ -3,6 +3,7 @@ LINK_DIRECTORIES(${CMAKE_BINARY_DIR}/lemon) SET(TESTS + adaptors_test bfs_test circulation_test counter_test @@ -11,7 +12,6 @@ dijkstra_test dim_test error_test - graph_adaptor_test graph_copy_test graph_test graph_utils_test diff --git a/test/Makefile.am b/test/Makefile.am --- a/test/Makefile.am +++ b/test/Makefile.am @@ -6,6 +6,7 @@ test/test_tools.h check_PROGRAMS += \ + test/adaptors_test \ test/bfs_test \ test/circulation_test \ test/counter_test \ @@ -14,7 +15,6 @@ test/dijkstra_test \ test/dim_test \ test/error_test \ - test/graph_adaptor_test \ test/graph_copy_test \ test/graph_test \ test/graph_utils_test \ @@ -36,6 +36,7 @@ TESTS += $(check_PROGRAMS) XFAIL_TESTS += test/test_tools_fail$(EXEEXT) +test_adaptors_test_SOURCES = test/adaptors_test.cc test_bfs_test_SOURCES = test/bfs_test.cc test_circulation_test_SOURCES = test/circulation_test.cc test_counter_test_SOURCES = test/counter_test.cc @@ -44,7 +45,6 @@ test_dijkstra_test_SOURCES = test/dijkstra_test.cc test_dim_test_SOURCES = test/dim_test.cc test_error_test_SOURCES = test/error_test.cc -test_graph_adaptor_test_SOURCES = test/graph_adaptor_test.cc test_graph_copy_test_SOURCES = test/graph_copy_test.cc test_graph_test_SOURCES = test/graph_test.cc test_graph_utils_test_SOURCES = test/graph_utils_test.cc diff --git a/test/graph_adaptor_test.cc b/test/adaptors_test.cc rename from test/graph_adaptor_test.cc rename to test/adaptors_test.cc