Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1)

Unified Diff: tools/android/findbugs_plugin/test/run_findbugs_plugin_tests.py

Issue 862133002: Update from https://crrev.com/312398 (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 5 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: tools/android/findbugs_plugin/test/run_findbugs_plugin_tests.py
diff --git a/tools/android/findbugs_plugin/test/run_findbugs_plugin_tests.py b/tools/android/findbugs_plugin/test/run_findbugs_plugin_tests.py
index c2e1531484c71e7726bd3644081725f5deebfd4c..a570cdb6045446a32e6836247dc231d27cb22d6b 100755
--- a/tools/android/findbugs_plugin/test/run_findbugs_plugin_tests.py
+++ b/tools/android/findbugs_plugin/test/run_findbugs_plugin_tests.py
@@ -35,9 +35,18 @@ def main(argv):
options.known_bugs = os.path.join(constants.DIR_SOURCE_ROOT, 'tools',
'android', 'findbugs_plugin', 'test',
'expected_result.txt')
+
if not options.only_analyze:
options.only_analyze = 'org.chromium.tools.findbugs.plugin.*'
+ # crbug.com/449101
+ # Temporary workaround to have the Android Clang Builder (dbg) bot
+ # pass the findbugs_tests step.
+ if not options.exclude:
+ options.exclude = os.path.join(constants.DIR_SOURCE_ROOT, 'build',
+ 'android', 'findbugs_filter',
+ 'findbugs_exclude.xml')
+
return findbugs.Run(options)
if __name__ == '__main__':

Powered by Google App Engine
This is Rietveld 408576698