Skip to content
Snippets Groups Projects
Commit aaca1a58 authored by Jan David Mol's avatar Jan David Mol
Browse files

Task #514: Filter casarest warnings

parent b6bb3d07
No related branches found
No related tags found
No related merge requests found
......@@ -37,6 +37,12 @@ if (m#^([/._ A-Za-z0-9-]+):([0-9]+):[0-9:]* warning: +(.*)$#) {
next if $file =~ m#/blitz/compiler.h$# && $warning =~ /^"restrict" redefined/;
next if $file =~ m#/casacore/casa/aipsdef.h$# && $warning =~ /^this is the location of the previous definition/;
# CasaRest warnings
next if $file =~ m#^/opt/cep/casarest/# && $warning =~ /^type qualifiers ignored on function return type/;
next if $file =~ m#^/opt/cep/casarest/# && $warning =~ /^'[^']+' was hidden/;
next if $file =~ m#^/opt/cep/casarest/# && $warning =~ /^by '[^']+'/;
next if $file =~ m#^/opt/cep/casarest/# && $warning =~ /^unused parameter/;
# Dynamic parts of a static executable
next if $warning =~ /^Using '[^']+' in statically linked applications requires at runtime the shared libraries/;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment