# HG changeset patch # User Doug Simon # Date 1395868823 -3600 # Node ID 10c6700908ef139845de593d1c05658f153570f5 # Parent 07dd21c7d5334a19568c67d98a92123ac3cd498c mx: removed use of exclusion filter files from findbugs command diff -r 07dd21c7d533 -r 10c6700908ef graal/findbugsExcludeFilter.xml --- a/graal/findbugsExcludeFilter.xml Wed Mar 26 22:19:33 2014 +0100 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,41 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff -r 07dd21c7d533 -r 10c6700908ef mx/mx_graal.py --- a/mx/mx_graal.py Wed Mar 26 22:19:33 2014 +0100 +++ b/mx/mx_graal.py Wed Mar 26 22:20:23 2014 +0100 @@ -1701,12 +1701,7 @@ outputDirs = [p.output_dir() for p in nonTestProjects] findbugsResults = join(_graal_home, 'findbugs.results') - cmd = ['-jar', findbugsJar, '-textui', '-low', '-maxRank', '15', '-exclude', join(_graal_home, 'graal', 'findbugsExcludeFilter.xml')] - for s in mx.suites(): - filt = join(s.dir, 'findbugsExcludeFilter.xml') - if exists(filt): - cmd.append('-exclude') - cmd.append(filt) + cmd = ['-jar', findbugsJar, '-textui', '-low', '-maxRank', '15'] if sys.stdout.isatty(): cmd.append('-progress') cmd = cmd + ['-auxclasspath', mx.classpath([p.name for p in nonTestProjects]), '-output', findbugsResults, '-progress', '-exitcode'] + args + outputDirs