From 6dbad25a443f0cba4d4f2a06ce0c0884e7eee64f Mon Sep 17 00:00:00 2001 From: Gary Talent Date: Mon, 6 Jun 2016 20:47:02 -0500 Subject: [PATCH] Renamed FsStore test to FileStoreIO. --- CMakeLists.txt | 2 +- test/CMakeLists.txt | 6 +++--- test/{fsstore.cpp => filestoreio.cpp} | 0 3 files changed, 4 insertions(+), 4 deletions(-) rename test/{fsstore.cpp => filestoreio.cpp} (100%) diff --git a/CMakeLists.txt b/CMakeLists.txt index 9904b0932..981e0acfc 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -25,4 +25,4 @@ add_subdirectory(src) add_subdirectory(test) add_test("Format" test/Format) -add_test("FsStore" test/FsStore) +add_test("FileStoreIO" test/FileStoreIO) diff --git a/test/CMakeLists.txt b/test/CMakeLists.txt index b08972ccd..a32976aba 100644 --- a/test/CMakeLists.txt +++ b/test/CMakeLists.txt @@ -6,9 +6,9 @@ add_executable( ) add_executable( - FsStore - fsstore.cpp + FileStoreIO + filestoreio.cpp ) target_link_libraries(Format WFS) -target_link_libraries(FsStore WFS) +target_link_libraries(FileStoreIO WFS) diff --git a/test/fsstore.cpp b/test/filestoreio.cpp similarity index 100% rename from test/fsstore.cpp rename to test/filestoreio.cpp