diff options
author | Brad King <brad.king@kitware.com> | 2014-07-17 13:31:53 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2014-07-17 13:31:53 (GMT) |
commit | 3526478cc093f1fc6c1887e1059f337fb7086cc7 (patch) | |
tree | b330fde30d2d674b43d15af2e4787d764a94b1b6 /Tests/RunCMake/File_Generate | |
parent | 7bc84502513febf4e5e974f3d4285baa53f0afb9 (diff) | |
download | CMake-3526478cc093f1fc6c1887e1059f337fb7086cc7.zip CMake-3526478cc093f1fc6c1887e1059f337fb7086cc7.tar.gz CMake-3526478cc093f1fc6c1887e1059f337fb7086cc7.tar.bz2 |
Tests: Activate tests accidentally excluded from Xcode
The generator name is "Xcode", not "XCode". Fix this typo. Explicitly
exclude the SubDirSpaces test on Xcode because it does not work. Also
tell the RunCMake.File_Generate test when Xcode is not multi-config so
it can exlcude the OutputConflict case.
Inspired-by: Daniele E. Domenichelli <daniele.domenichelli@iit.it>
Diffstat (limited to 'Tests/RunCMake/File_Generate')
-rw-r--r-- | Tests/RunCMake/File_Generate/RunCMakeTest.cmake | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Tests/RunCMake/File_Generate/RunCMakeTest.cmake b/Tests/RunCMake/File_Generate/RunCMakeTest.cmake index f74d17e..dee0692 100644 --- a/Tests/RunCMake/File_Generate/RunCMakeTest.cmake +++ b/Tests/RunCMake/File_Generate/RunCMakeTest.cmake @@ -1,8 +1,8 @@ include(RunCMake) run_cmake(CommandConflict) -if("${RunCMake_GENERATOR}" MATCHES "Visual Studio" OR "${RunCMake_GENERATOR}" MATCHES "XCode" ) - run_cmake(OutputConflict) +if("${RunCMake_GENERATOR}" MATCHES "Visual Studio|Xcode" AND NOT XCODE_BELOW_2) + run_cmake(OutputConflict) endif() run_cmake(EmptyCondition1) run_cmake(EmptyCondition2) |