diff options
author | Sylvain Joubert <joubert.sy@gmail.com> | 2017-01-11 17:58:19 (GMT) |
---|---|---|
committer | Sylvain Joubert <joubert.sy@gmail.com> | 2017-01-11 18:27:45 (GMT) |
commit | efff7086c66d63c62d9474eca5a3b2d21d725bfe (patch) | |
tree | 9e6c9ae523e480406e86f61bb1efadf213ba1156 /Source/CTest/cmCTestMemCheckHandler.cxx | |
parent | e0cc40ed58a16f63a26cf25c56f6e8471401fbfe (diff) | |
download | CMake-efff7086c66d63c62d9474eca5a3b2d21d725bfe.zip CMake-efff7086c66d63c62d9474eca5a3b2d21d725bfe.tar.gz CMake-efff7086c66d63c62d9474eca5a3b2d21d725bfe.tar.bz2 |
ctest_memcheck: Append sanitizers user options at the end to allow overriding
Diffstat (limited to 'Source/CTest/cmCTestMemCheckHandler.cxx')
-rw-r--r-- | Source/CTest/cmCTestMemCheckHandler.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/CTest/cmCTestMemCheckHandler.cxx b/Source/CTest/cmCTestMemCheckHandler.cxx index 4d23e45..a062e64 100644 --- a/Source/CTest/cmCTestMemCheckHandler.cxx +++ b/Source/CTest/cmCTestMemCheckHandler.cxx @@ -634,7 +634,7 @@ bool cmCTestMemCheckHandler::InitializeMemoryChecking() std::string outputFile = envVar + "=log_path=\"" + this->MemoryTesterOutputFile + "\""; this->MemoryTesterEnvironmentVariable = - outputFile + extraOptions + suppressionsOption; + outputFile + suppressionsOption + extraOptions; break; } default: |