[Android] Adds CleanupReferenceTest to findbugs_exclude.xml

NOTRY=True
BUG=277682

Review URL: https://chromiumcodereview.appspot.com/22929035

git-svn-id: http://src.chromium.org/svn/trunk/src/build@219062 4ff67af0-8c30-449e-8e8b-ad334ec8d88c
This commit is contained in:
gkanwar@chromium.org 2013-08-22 19:09:00 +00:00
Родитель cd5b01d5a4
Коммит 3f1a145ca7
1 изменённых файлов: 8 добавлений и 0 удалений

Просмотреть файл

@ -21,6 +21,14 @@ In particular, ~ at the start of a string means it's a regex.
<Match>
<Class name="~org\.chromium\.content\..*\.NativeLibraries.*?" />
</Match>
<!--
Ignore bugs in CleanupReferenceTest.java (redundant null check)
TODO(joth): Group all GC related tests and filter them out, since the null
check is necessary to make sure the nullification is flushed to memory.
-->
<Match>
<Class name="~org\.chromium\.content\..*\.CleanupReferenceTest.*?" />
</Match>
<!-- Ignore errors in JavaBridge due to reflection. -->
<Match>
<Class name="~.*\.JavaBridge.*"/>