diff options
author | Brad King <brad.king@kitware.com> | 2022-03-11 13:43:22 (GMT) |
---|---|---|
committer | Kitware Robot <kwrobot@kitware.com> | 2022-03-11 13:43:46 (GMT) |
commit | 67f23f5f4ed298457b0bc2a9611761096fec7342 (patch) | |
tree | 38e9168b420576534403e020c6c5f8ef575013cf /Tests | |
parent | d8f95471c7d779c8bb1606fbfff664f1dad6cde1 (diff) | |
parent | 5059db7c179635e2c73c6a8645b582940eb5a14d (diff) | |
download | CMake-67f23f5f4ed298457b0bc2a9611761096fec7342.zip CMake-67f23f5f4ed298457b0bc2a9611761096fec7342.tar.gz CMake-67f23f5f4ed298457b0bc2a9611761096fec7342.tar.bz2 |
Merge topic 'test-fix-regex'
5059db7c17 Tests: Fix CMake syntax warning in RunCMake.CTestCommandLine
Acked-by: Kitware Robot <kwrobot@kitware.com>
Acked-by: Frank Winklmeier <frank.winklmeier@cern.ch>
Merge-request: !7062
Diffstat (limited to 'Tests')
-rw-r--r-- | Tests/RunCMake/CTestCommandLine/RunCMakeTest.cmake | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Tests/RunCMake/CTestCommandLine/RunCMakeTest.cmake b/Tests/RunCMake/CTestCommandLine/RunCMakeTest.cmake index 5b198bd..6835834 100644 --- a/Tests/RunCMake/CTestCommandLine/RunCMakeTest.cmake +++ b/Tests/RunCMake/CTestCommandLine/RunCMakeTest.cmake @@ -293,7 +293,7 @@ function(run_TestOutputTruncation mode expected) endfunction() run_TestOutputTruncation("head" "\\.\\.\\.6789") run_TestOutputTruncation("middle" "12\\.\\.\\..*\\.\\.\\.89") -run_TestOutputTruncation("tail" "12345\.\.\.") +run_TestOutputTruncation("tail" "12345\\.\\.\\.") # Test --stop-on-failure function(run_stop_on_failure) |