diff options
author | David Cole <david.cole@kitware.com> | 2010-09-20 17:20:15 (GMT) |
---|---|---|
committer | David Cole <david.cole@kitware.com> | 2010-09-20 17:20:15 (GMT) |
commit | a798bb7074dd45e4e375a3df69d08f62a17ab2ab (patch) | |
tree | 80e1167d758b025184444d9ae41266f4678a3320 /Tests | |
parent | 9b4ab06c2c46244c158b4349f1b2865f44a11a42 (diff) | |
download | CMake-a798bb7074dd45e4e375a3df69d08f62a17ab2ab.zip CMake-a798bb7074dd45e4e375a3df69d08f62a17ab2ab.tar.gz CMake-a798bb7074dd45e4e375a3df69d08f62a17ab2ab.tar.bz2 |
Avoid CustomCommand test failure on VS71 (#9963)
Test still failing on dash1.kitware. Give up on testing
the new arg on MSVC71. Test it with newer nmakes instead.
All other dashboards are fine with -DPATH=c:/posix/path
as the first arg, so keep it except when MSVC71 is true.
Diffstat (limited to 'Tests')
-rw-r--r-- | Tests/CustomCommand/CMakeLists.txt | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/Tests/CustomCommand/CMakeLists.txt b/Tests/CustomCommand/CMakeLists.txt index d2a0cf7..76208d4 100644 --- a/Tests/CustomCommand/CMakeLists.txt +++ b/Tests/CustomCommand/CMakeLists.txt @@ -224,8 +224,12 @@ ADD_CUSTOM_COMMAND(OUTPUT gen_redirect.c ############################################################################## # Test non-trivial command line arguments in custom commands. SET(EXPECTED_ARGUMENTS) +SET(CHECK_ARGS) +IF(NOT MSVC71) + SET(CHECK_ARGS -DPATH=c:/posix/path) +ENDIF() SET(CHECK_ARGS - -DPATH=c:/posix/path + ${CHECK_ARGS} c:/posix/path c:\\windows\\path 'single-quotes' |