~ubuntu-branches/ubuntu/precise/cmake/precise-updates

« back to all changes in this revision

Viewing changes to Tests/ExternalProject/CMakeLists.txt

  • Committer: Package Import Robot
  • Author(s): Rohan Garg
  • Date: 2012-01-17 23:04:07 UTC
  • mfrom: (1.13.6)
  • Revision ID: package-import@ubuntu.com-20120117230407-14cdb6g0mxmh29bl
Tags: 2.8.7-0ubuntu1
* New upstream release
  - Add increase_ctest_test_timeout.diff to increase timeout period
    of a test

Show diffs side-by-side

added added

removed removed

Lines of Context:
343
343
# Only do svn tests with svn >= version 1.2
344
344
#
345
345
if(do_svn_tests)
346
 
  execute_process(COMMAND ${Subversion_SVN_EXECUTABLE} --version
347
 
    OUTPUT_VARIABLE Subversion_VERSION_SVN
348
 
    OUTPUT_STRIP_TRAILING_WHITESPACE)
349
 
  string(REGEX REPLACE "^(.*\n)?svn, version ([.0-9]+).*"
350
 
    "\\2" Subversion_VERSION_SVN "${Subversion_VERSION_SVN}")
351
 
  message(STATUS "Subversion_VERSION_SVN='${Subversion_VERSION_SVN}'")
352
 
 
353
346
  if(Subversion_VERSION_SVN VERSION_LESS 1.2)
354
347
    message(STATUS "No ExternalProject svn tests with svn client less than version 1.2")
355
348
    set(do_svn_tests 0)