Re: [cmake-developers] ctest - how to reset default regex error list

2018-07-19 Thread Brad King
On 07/18/2018 03:26 PM, Michal Wozniak wrote: > Is there a way to have a completely new error regex list?   No, due to the appending logic you found. Some new option would need to be added to fully replace the list. If you use CTEST_USE_LAUNCHERS the default list is much reduced. -Brad --

[cmake-developers] ctest - how to reset default regex error list

2018-07-18 Thread Michal Wozniak
Hi, My tests are failing since they are detecting the "ERROR:" I thought by using CTEST_CUSTOM_ERROR_MATCH, I would be able to reset the default list of errors and even use my own list. eg : set(CTEST_CUSTOM_ERROR_MATCH "") or set(CTEST_CUSTOM_ERROR_MATCH "error0" "error1" )