diff options
author | Allen Byrne <byrn@hdfgroup.org> | 2020-01-14 17:44:02 (GMT) |
---|---|---|
committer | Allen Byrne <byrn@hdfgroup.org> | 2020-01-14 17:44:02 (GMT) |
commit | 4077d99645623929cf0c61779c98539efb6742e7 (patch) | |
tree | 83d9b477eca9990d9d58f604916c88a156a0a304 | |
parent | 341600b4a68dc9dbf11e1c43c3ff2746c200bd2c (diff) | |
download | hdf5-4077d99645623929cf0c61779c98539efb6742e7.zip hdf5-4077d99645623929cf0c61779c98539efb6742e7.tar.gz hdf5-4077d99645623929cf0c61779c98539efb6742e7.tar.bz2 |
Adjust regex for warnings
-rw-r--r-- | config/cmake_ext_mod/CTestCustom.cmake | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/config/cmake_ext_mod/CTestCustom.cmake b/config/cmake_ext_mod/CTestCustom.cmake index f8d4cd6..4e292a7 100644 --- a/config/cmake_ext_mod/CTestCustom.cmake +++ b/config/cmake_ext_mod/CTestCustom.cmake @@ -2,14 +2,14 @@ set (CTEST_CUSTOM_MAXIMUM_NUMBER_OF_WARNINGS 3000) set (CTEST_CUSTOM_WARNING_EXCEPTION ${CTEST_CUSTOM_WARNING_EXCEPTION} - "note.*expected.*void.*but argument is of type.*volatile" - "SZIP.src.*:[ \t]*warning" - "ZLIB.src.*:[ \t]*warning" - "jpeg.src.*:[ \t]*warning" - "POSIX name for this item is deprecated" - "disabling jobserver mode" - "warning.*implicit declaration of function" - "note: expanded from macro" + ".*note.*expected.*void.*but argument is of type.*volatile.*" + ".*src.SZIP.*:[ \t]*warning.*" + ".*src.ZLIB.*:[ \t]*warning.*" + ".*jpeg.src.*:[ \t]*warning.*" + ".*POSIX name for this item is deprecated.*" + ".*disabling jobserver mode.*" + ".*warning.*implicit declaration of function.*" + ".*note: expanded from macro.*" ) set (CTEST_CUSTOM_MEMCHECK_IGNORE |