diff options
Diffstat (limited to 'Modules')
-rw-r--r-- | Modules/Dart.cmake | 2 | ||||
-rw-r--r-- | Modules/DartConfiguration.tcl.in | 1 |
2 files changed, 3 insertions, 0 deletions
diff --git a/Modules/Dart.cmake b/Modules/Dart.cmake index 70b5ef6..cfe6fdb 100644 --- a/Modules/Dart.cmake +++ b/Modules/Dart.cmake @@ -74,6 +74,7 @@ IF(BUILD_TESTING) DOC "Path to Rational purify command, used for memory error detection." ) FIND_PROGRAM(SCPCOMMAND scp DOC "Path to scp command, used by some Dart clients for submitting results to a Dart server (when not using ftp for submissions)") + FIND_PROGRAM(COVERAGE_COMMAND gcov DOC "Path to the coverage program that Dart client uses for performing coverage inspection") # find a tcl shell command INCLUDE(${CMAKE_ROOT}/Modules/FindTclsh.cmake) @@ -121,6 +122,7 @@ IF(BUILD_TESTING) CVS_UPDATE_OPTIONS DART_TESTING_TIMEOUT SCPCOMMAND + COVERAGE_COMMAND DELIVER_CONTINUOUS_EMAIL ) # BUILDNAME diff --git a/Modules/DartConfiguration.tcl.in b/Modules/DartConfiguration.tcl.in index bed63d1..aaed45a 100644 --- a/Modules/DartConfiguration.tcl.in +++ b/Modules/DartConfiguration.tcl.in @@ -40,6 +40,7 @@ ScpCommand: @SCPCOMMAND@ PurifyCommand: @PURIFYCOMMAND@ ValgrindCommand: @VALGRIND_COMMAND@ ValgrindCommandOptions: @VALGRIND_COMMAND_OPTIONS@ +CoverageCommand: @COVERAGE_COMMAND@ # Compression commands GunzipCommand: @GUNZIPCOMMAND@ CompressionCommand: @COMPRESSIONCOMMAND@ |