From 5c1f4da83d1142e52b361e8f59dd68ea5728e843 Mon Sep 17 00:00:00 2001 From: Brad King Date: Fri, 18 Mar 2016 13:20:42 -0400 Subject: [PATCH] Tests: Rename RunCMake.{SolutionGlobalSections => VSSolution} The test will be suitable for covering other `.sln` content too. --- Tests/RunCMake/CMakeLists.txt | 2 +- .../{SolutionGlobalSections => VSSolution}/CMakeLists.txt | 0 .../{SolutionGlobalSections => VSSolution}/MorePost-check.cmake | 0 .../{SolutionGlobalSections => VSSolution}/MorePost.cmake | 0 .../{SolutionGlobalSections => VSSolution}/MorePre-check.cmake | 0 .../{SolutionGlobalSections => VSSolution}/MorePre.cmake | 0 .../{SolutionGlobalSections => VSSolution}/OnePost-check.cmake | 0 .../{SolutionGlobalSections => VSSolution}/OnePost.cmake | 0 .../{SolutionGlobalSections => VSSolution}/OnePre-check.cmake | 0 .../{SolutionGlobalSections => VSSolution}/OnePre.cmake | 0 .../Override1-check.cmake | 0 .../{SolutionGlobalSections => VSSolution}/Override1.cmake | 0 .../Override2-check.cmake | 0 .../{SolutionGlobalSections => VSSolution}/Override2.cmake | 0 .../{SolutionGlobalSections => VSSolution}/PrePost-check.cmake | 0 .../{SolutionGlobalSections => VSSolution}/PrePost.cmake | 0 .../{SolutionGlobalSections => VSSolution}/RunCMakeTest.cmake | 0 .../solution_parsing.cmake | 0 18 files changed, 1 insertion(+), 1 deletion(-) rename Tests/RunCMake/{SolutionGlobalSections => VSSolution}/CMakeLists.txt (100%) rename Tests/RunCMake/{SolutionGlobalSections => VSSolution}/MorePost-check.cmake (100%) rename Tests/RunCMake/{SolutionGlobalSections => VSSolution}/MorePost.cmake (100%) rename Tests/RunCMake/{SolutionGlobalSections => VSSolution}/MorePre-check.cmake (100%) rename Tests/RunCMake/{SolutionGlobalSections => VSSolution}/MorePre.cmake (100%) rename Tests/RunCMake/{SolutionGlobalSections => VSSolution}/OnePost-check.cmake (100%) rename Tests/RunCMake/{SolutionGlobalSections => VSSolution}/OnePost.cmake (100%) rename Tests/RunCMake/{SolutionGlobalSections => VSSolution}/OnePre-check.cmake (100%) rename Tests/RunCMake/{SolutionGlobalSections => VSSolution}/OnePre.cmake (100%) rename Tests/RunCMake/{SolutionGlobalSections => VSSolution}/Override1-check.cmake (100%) rename Tests/RunCMake/{SolutionGlobalSections => VSSolution}/Override1.cmake (100%) rename Tests/RunCMake/{SolutionGlobalSections => VSSolution}/Override2-check.cmake (100%) rename Tests/RunCMake/{SolutionGlobalSections => VSSolution}/Override2.cmake (100%) rename Tests/RunCMake/{SolutionGlobalSections => VSSolution}/PrePost-check.cmake (100%) rename Tests/RunCMake/{SolutionGlobalSections => VSSolution}/PrePost.cmake (100%) rename Tests/RunCMake/{SolutionGlobalSections => VSSolution}/RunCMakeTest.cmake (100%) rename Tests/RunCMake/{SolutionGlobalSections => VSSolution}/solution_parsing.cmake (100%) diff --git a/Tests/RunCMake/CMakeLists.txt b/Tests/RunCMake/CMakeLists.txt index 588f3a122..c7fe6493e 100644 --- a/Tests/RunCMake/CMakeLists.txt +++ b/Tests/RunCMake/CMakeLists.txt @@ -234,7 +234,7 @@ endif() if("${CMAKE_GENERATOR}" MATCHES "Visual Studio") add_RunCMake_test(include_external_msproject) - add_RunCMake_test(SolutionGlobalSections) + add_RunCMake_test(VSSolution) endif() if("${CMAKE_GENERATOR}" MATCHES "Visual Studio ([^789]|[789][0-9])") diff --git a/Tests/RunCMake/SolutionGlobalSections/CMakeLists.txt b/Tests/RunCMake/VSSolution/CMakeLists.txt similarity index 100% rename from Tests/RunCMake/SolutionGlobalSections/CMakeLists.txt rename to Tests/RunCMake/VSSolution/CMakeLists.txt diff --git a/Tests/RunCMake/SolutionGlobalSections/MorePost-check.cmake b/Tests/RunCMake/VSSolution/MorePost-check.cmake similarity index 100% rename from Tests/RunCMake/SolutionGlobalSections/MorePost-check.cmake rename to Tests/RunCMake/VSSolution/MorePost-check.cmake diff --git a/Tests/RunCMake/SolutionGlobalSections/MorePost.cmake b/Tests/RunCMake/VSSolution/MorePost.cmake similarity index 100% rename from Tests/RunCMake/SolutionGlobalSections/MorePost.cmake rename to Tests/RunCMake/VSSolution/MorePost.cmake diff --git a/Tests/RunCMake/SolutionGlobalSections/MorePre-check.cmake b/Tests/RunCMake/VSSolution/MorePre-check.cmake similarity index 100% rename from Tests/RunCMake/SolutionGlobalSections/MorePre-check.cmake rename to Tests/RunCMake/VSSolution/MorePre-check.cmake diff --git a/Tests/RunCMake/SolutionGlobalSections/MorePre.cmake b/Tests/RunCMake/VSSolution/MorePre.cmake similarity index 100% rename from Tests/RunCMake/SolutionGlobalSections/MorePre.cmake rename to Tests/RunCMake/VSSolution/MorePre.cmake diff --git a/Tests/RunCMake/SolutionGlobalSections/OnePost-check.cmake b/Tests/RunCMake/VSSolution/OnePost-check.cmake similarity index 100% rename from Tests/RunCMake/SolutionGlobalSections/OnePost-check.cmake rename to Tests/RunCMake/VSSolution/OnePost-check.cmake diff --git a/Tests/RunCMake/SolutionGlobalSections/OnePost.cmake b/Tests/RunCMake/VSSolution/OnePost.cmake similarity index 100% rename from Tests/RunCMake/SolutionGlobalSections/OnePost.cmake rename to Tests/RunCMake/VSSolution/OnePost.cmake diff --git a/Tests/RunCMake/SolutionGlobalSections/OnePre-check.cmake b/Tests/RunCMake/VSSolution/OnePre-check.cmake similarity index 100% rename from Tests/RunCMake/SolutionGlobalSections/OnePre-check.cmake rename to Tests/RunCMake/VSSolution/OnePre-check.cmake diff --git a/Tests/RunCMake/SolutionGlobalSections/OnePre.cmake b/Tests/RunCMake/VSSolution/OnePre.cmake similarity index 100% rename from Tests/RunCMake/SolutionGlobalSections/OnePre.cmake rename to Tests/RunCMake/VSSolution/OnePre.cmake diff --git a/Tests/RunCMake/SolutionGlobalSections/Override1-check.cmake b/Tests/RunCMake/VSSolution/Override1-check.cmake similarity index 100% rename from Tests/RunCMake/SolutionGlobalSections/Override1-check.cmake rename to Tests/RunCMake/VSSolution/Override1-check.cmake diff --git a/Tests/RunCMake/SolutionGlobalSections/Override1.cmake b/Tests/RunCMake/VSSolution/Override1.cmake similarity index 100% rename from Tests/RunCMake/SolutionGlobalSections/Override1.cmake rename to Tests/RunCMake/VSSolution/Override1.cmake diff --git a/Tests/RunCMake/SolutionGlobalSections/Override2-check.cmake b/Tests/RunCMake/VSSolution/Override2-check.cmake similarity index 100% rename from Tests/RunCMake/SolutionGlobalSections/Override2-check.cmake rename to Tests/RunCMake/VSSolution/Override2-check.cmake diff --git a/Tests/RunCMake/SolutionGlobalSections/Override2.cmake b/Tests/RunCMake/VSSolution/Override2.cmake similarity index 100% rename from Tests/RunCMake/SolutionGlobalSections/Override2.cmake rename to Tests/RunCMake/VSSolution/Override2.cmake diff --git a/Tests/RunCMake/SolutionGlobalSections/PrePost-check.cmake b/Tests/RunCMake/VSSolution/PrePost-check.cmake similarity index 100% rename from Tests/RunCMake/SolutionGlobalSections/PrePost-check.cmake rename to Tests/RunCMake/VSSolution/PrePost-check.cmake diff --git a/Tests/RunCMake/SolutionGlobalSections/PrePost.cmake b/Tests/RunCMake/VSSolution/PrePost.cmake similarity index 100% rename from Tests/RunCMake/SolutionGlobalSections/PrePost.cmake rename to Tests/RunCMake/VSSolution/PrePost.cmake diff --git a/Tests/RunCMake/SolutionGlobalSections/RunCMakeTest.cmake b/Tests/RunCMake/VSSolution/RunCMakeTest.cmake similarity index 100% rename from Tests/RunCMake/SolutionGlobalSections/RunCMakeTest.cmake rename to Tests/RunCMake/VSSolution/RunCMakeTest.cmake diff --git a/Tests/RunCMake/SolutionGlobalSections/solution_parsing.cmake b/Tests/RunCMake/VSSolution/solution_parsing.cmake similarity index 100% rename from Tests/RunCMake/SolutionGlobalSections/solution_parsing.cmake rename to Tests/RunCMake/VSSolution/solution_parsing.cmake