diff options
author | Allen Byrne <byrn@hdfgroup.org> | 2012-05-25 17:36:01 (GMT) |
---|---|---|
committer | Allen Byrne <byrn@hdfgroup.org> | 2012-05-25 17:36:01 (GMT) |
commit | d7bfa3617fefb3d1e0262d8940d687bfa9717667 (patch) | |
tree | 65d224519ec49f8c1ccc5dfa3ff24bda7fbe5406 | |
parent | d54152f057ef40e17715f1a43ab6895fa3edc389 (diff) | |
download | hdf5-d7bfa3617fefb3d1e0262d8940d687bfa9717667.zip hdf5-d7bfa3617fefb3d1e0262d8940d687bfa9717667.tar.gz hdf5-d7bfa3617fefb3d1e0262d8940d687bfa9717667.tar.bz2 |
[svn-r22410] reduce compiler warnings reported by CDash for non-critical issues
-rwxr-xr-x | config/cmake/CTestCustom.cmake | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/config/cmake/CTestCustom.cmake b/config/cmake/CTestCustom.cmake index 7958f22..b54bedc 100755 --- a/config/cmake/CTestCustom.cmake +++ b/config/cmake/CTestCustom.cmake @@ -5,15 +5,15 @@ SET (CTEST_CUSTOM_WARNING_EXCEPTION "H5detect.c.[0-9]+.[ \t]*:[ \t]*warning C4090:" "H5detect.c.[0-9]+.[ \t]*:[ \t]*warning:[ \t]*passing argument" "H5detect.c[0-9 \t:]*warning:[ \t]*passing argument" - "H5detect.c[0-9 \t:]*note:[ \t]*expected .void .. but argument is of type .volatile" - "include/string.h[0-9 \t:]*note:[ \t]*expected .void .. but argument is of type .volatile" - "note:[ \t]*expected .void .. but argument is of type .volatile" + "note.*expected.*void.*but argument is of type.*volatile" "H5Tconv.c[0-9 \t:]*warning:[ \t]*comparison is always false due to limited range of data type" "H5Ztrans.c.[0-9]+.[ \t]*:[ \t]*warning C4244" "SZIP.src.*:[ \t]*warning" "POSIX name for this item is deprecated" "disabling jobserver mode" "config.cmake.xlatefile.c" + "warning.*implicit declaration of function" +# "fpp:[ \t]*warning:[ \t]*cannot remove H5_DEBUG_API - not a predefined macro" ) SET (CTEST_CUSTOM_MEMCHECK_IGNORE |