diff options
author | Kyle Edwards <kyle.edwards@kitware.com> | 2018-01-25 19:24:09 (GMT) |
---|---|---|
committer | Kyle Edwards <kyle.edwards@kitware.com> | 2018-01-26 14:28:33 (GMT) |
commit | 13347740e2fe00ad51493c89087f1bbbc35b224c (patch) | |
tree | 734c2cfe45ebc380aaa23e66f45fcbd26f0fc25b | |
parent | 74092d92bffa26b0e17da638dabcbc462c3f407a (diff) | |
download | CMake-13347740e2fe00ad51493c89087f1bbbc35b224c.zip CMake-13347740e2fe00ad51493c89087f1bbbc35b224c.tar.gz CMake-13347740e2fe00ad51493c89087f1bbbc35b224c.tar.bz2 |
Help: add release notes, documentation for CTEST_RUN_CURRENT_SCRIPT behavior
-rw-r--r-- | Help/manual/cmake-variables.7.rst | 1 | ||||
-rw-r--r-- | Help/release/dev/ctest_start_function_scope.rst | 8 | ||||
-rw-r--r-- | Help/variable/CTEST_RUN_CURRENT_SCRIPT.rst | 5 |
3 files changed, 14 insertions, 0 deletions
diff --git a/Help/manual/cmake-variables.7.rst b/Help/manual/cmake-variables.7.rst index c18d8da..3ac5123 100644 --- a/Help/manual/cmake-variables.7.rst +++ b/Help/manual/cmake-variables.7.rst @@ -513,6 +513,7 @@ Variables for CTest /variable/CTEST_P4_COMMAND /variable/CTEST_P4_OPTIONS /variable/CTEST_P4_UPDATE_OPTIONS + /variable/CTEST_RUN_CURRENT_SCRIPT /variable/CTEST_SCP_COMMAND /variable/CTEST_SITE /variable/CTEST_SOURCE_DIRECTORY diff --git a/Help/release/dev/ctest_start_function_scope.rst b/Help/release/dev/ctest_start_function_scope.rst new file mode 100644 index 0000000..f949c2b --- /dev/null +++ b/Help/release/dev/ctest_start_function_scope.rst @@ -0,0 +1,8 @@ +ctest_start_function_scope +-------------------------- + +* The :command:`ctest_start` command no longer sets + :variable:`CTEST_RUN_CURRENT_SCRIPT` due to issues with scoping if it is + called from inside a function. Instead, it sets an internal variable in + CTest. However, setting :variable:`CTEST_RUN_CURRENT_SCRIPT` to 0 at the + global scope still prevents the script from being re-run at the end. diff --git a/Help/variable/CTEST_RUN_CURRENT_SCRIPT.rst b/Help/variable/CTEST_RUN_CURRENT_SCRIPT.rst new file mode 100644 index 0000000..abc123c --- /dev/null +++ b/Help/variable/CTEST_RUN_CURRENT_SCRIPT.rst @@ -0,0 +1,5 @@ +CTEST_RUN_CURRENT_SCRIPT +------------------------ + +Setting this to 0 prevents :manual:`ctest(1)` from being run again when it +reaches the end of a script run by calling ``ctest -S``. |