1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56
|
# same as boost settings:
#SET(CTEST_CUSTOM_MAXIMUM_NUMBER_OF_ERRORS 1000)
#SET(CTEST_CUSTOM_MAXIMUM_NUMBER_OF_WARNINGS 1000)
##SET(CTEST_CUSTOM_MAXIMUM_PASSED_TEST_OUTPUT_SIZE 1000000)
#SET(CTEST_CUSTOM_MAXIMUM_PASSED_TEST_OUTPUT_SIZE 49152)
#SET(CTEST_CUSTOM_MAXIMUM_FAILED_TEST_OUTPUT_SIZE 49152)
SET(CTEST_CUSTOM_WARNING_EXCEPTION
${CTEST_CUSTOM_WARNING_EXCEPTION}
"Utilities"
"Utilities.gdcmopenjpeg.*warning C4101: '.*' : unreferenced local variable"
"gdcm.*.cxx.obj : warning LNK4221: no public symbols found; archive member will be inaccessible"
"/usr/bin/ranlib: for architecture: .* file: .* has no symbols"
"gdcmcharls"
"gdcmexpat"
"warning CS0114:"
"warning CS0108:"
"warning CS0109:"
"warning CS1591:"
"gdcmJAVA_wrap.cxx" # swig generated
"gdcmswigPYTHON_wrap.cxx" # swig generated
"gdcmCSHARP_wrap.cxx" # swig generated
"gdcmPythonFilter.cxx" # need some love
"puff.c" # zlib code
"/usr/bin/ld: warning: libjpeg.so.62" # needed by .*libvtkIO.so, may conflict with libjpeg.so.8
"/usr/bin/ld: warning: libavcodec.so.52" # needed by .*libvtkIO.so, may conflict with libavcodec.so.53
"/usr/bin/ld: warning: libavformat.so.52" #needed by libvtkIO.so, may conflict with libavformat.so.53
"/usr/bin/ld: warning: libavutil.so.49" # needed by .*libvtkIO.so, may conflict with libavutil.so.51
"/usr/bin/ld: warning: libswscale.so.0" # needed by .*libvtkIO.so, may conflict with libswscale.so.2
"CUSTOMBUILD : warning CS1668: Invalid search path" # appveyor ?
"Returning a pointer or reference in a director method is not recommended."
"Covariant return types not supported in Java."
"Covariant return types not supported in C#."
"Nested struct not currently supported"
"bootstrap class path not set in conjunction with"
"warning CS1699"
"has been explicitly marked deprecated here"
# clang-6.0: warning: the object size sanitizer has no effect at -O0, but is explicitly enabled: -fsanitize=float-cast-overflow,integer-divide-by-zero,null,object-size,return,shift,signed-integer-overflow,unreachable,vla-bound [-Winvalid-command-line-argument]
"the object size sanitizer has no effect at"
)
# Disable dynamic analysis on some tests:
SET(CTEST_CUSTOM_MEMCHECK_IGNORE
${CTEST_CUSTOM_MEMCHECK_IGNORE}
"Python"
"DCMDUMP"
"DCDUMP"
"DCMDJPEG"
"DCMDRLE"
"vtk"
)
# ==3201== 8 bytes in 1 blocks are still reachable in loss record 2 of 8
# ==3201== at 0x4C20809: operator new(unsigned long) (vg_replace_malloc.c:230)
# ==3201== by 0x405E28F: DJDecoderRegistration::registerCodecs(E_DecompressionColorSpaceConversion, E_UIDCreation, E_PlanarConfiguration, bool) (in /usr/lib/libdcmjpeg.so.1.0.0)
# ==3201== by 0x402AB1: (within /usr/bin/dcmdjpeg)
|