diff --git a/test/CMakeLists.txt b/test/CMakeLists.txt index 1073dae..180c989 100644 --- a/test/CMakeLists.txt +++ b/test/CMakeLists.txt @@ -11,20 +11,20 @@ function(add_cmake_test FILE) endfunction() add_cmake_test( - SetErrorTest.cmake + cmake/SetErrorTest.cmake "Set error" "Set error with variable specified" ) add_cmake_test( - GitCloneTest.cmake + cmake/GitCloneTest.cmake "Incompletely clone a Git repository" "Incompletely clone an invalid Git repository" "Incompletely clone a Git repository to a specific directory" ) add_cmake_test( - GitCheckoutTest.cmake + cmake/GitCheckoutTest.cmake "Check out a Git repository" "Check out a Git repository to a specific directory" "Check out a Git repository on a specific ref" diff --git a/test/Assertion.cmake b/test/cmake/Assertion.cmake similarity index 100% rename from test/Assertion.cmake rename to test/cmake/Assertion.cmake diff --git a/test/GitCheckoutTest.cmake b/test/cmake/GitCheckoutTest.cmake similarity index 100% rename from test/GitCheckoutTest.cmake rename to test/cmake/GitCheckoutTest.cmake diff --git a/test/GitCloneTest.cmake b/test/cmake/GitCloneTest.cmake similarity index 100% rename from test/GitCloneTest.cmake rename to test/cmake/GitCloneTest.cmake diff --git a/test/SetErrorTest.cmake b/test/cmake/SetErrorTest.cmake similarity index 100% rename from test/SetErrorTest.cmake rename to test/cmake/SetErrorTest.cmake