Changes between Version 26 and Version 27 of BuildingOnUnixWithCMake


Ignore:
Timestamp:
Oct 4, 2018, 7:13:23 PM (6 years ago)
Author:
dbaston
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • BuildingOnUnixWithCMake

    v26 v27  
    7171== Test ==
    7272
    73 In CMake build system, testing capabilities are provided by [http://www.itk.org/Wiki/CTest:FAQ CTest] which is distributed together with CMake package.
     73In the CMake build system, testing capabilities are provided by [http://www.itk.org/Wiki/CTest:FAQ CTest], which is distributed together with CMake.
    7474
    75 After the build is ready, tests can be executed from inside ''BUILDDIR''. Natively, CMake uses target named ''test'':
     75After the build is ready, tests can be executed from inside ''BUILDDIR''. Natively, CMake uses a target named ''test'':
    7676
    7777{{{
     
    8585}}}
    8686
    87 It is also possible to run ''ctest'' program directly, but not through any of the ''make'' targets. This option gives access to number of ''ctest'' command line options (''ctest --help''), for example:
     87It is also possible to run the ''ctest'' program directly, without using a ''make'' target. This option gives access to a number of ''ctest'' command line options (see ''ctest --help'' for a listing).
    8888
    8989{{{
     
    9292}}}
    9393
    94 A list of test suites can be obtained by running ''ctest --show-only'':
     94A list of GEOS test suites can be obtained by running ''ctest --show-only'':
    9595
    9696{{{
     
    108108}}}
    109109
    110 An subset of test suites can then be run using a regular expression:
    111 
     110A subset of test suites can then be run using a regular expression:
    112111
    113112{{{