-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathspotbugs-exclude-filter.xml
More file actions
25 lines (25 loc) · 1006 Bytes
/
spotbugs-exclude-filter.xml
File metadata and controls
25 lines (25 loc) · 1006 Bytes
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
<FindBugsFilter>
<!-- Ignore serialization bug (HDFS save & load) -->
<Match>
<Class name="com.teragrep.pth_10.steps.teragrep.TeragrepHdfsStep"/>
<Bug pattern="OBJECT_DESERIALIZATION" />
</Match>
<!-- Ignore dummy passwords in tests -->
<Match>
<Class name="com.teragrep.pth_10.steps.teragrep.bloomfilter.BloomFilterTableTest"/>
<Bug pattern="HARD_CODE_PASSWORD"/>
</Match>
<Match>
<Class name="com.teragrep.pth_10.steps.teragrep.bloomfilter.FilterTypesTest"/>
<Bug pattern="HARD_CODE_PASSWORD"/>
</Match>
<Match>
<Class name="com.teragrep.pth_10.steps.teragrep.bloomfilter.TeragrepBloomFilterTest"/>
<Bug pattern="HARD_CODE_PASSWORD"/>
</Match>
<!-- Ignore MD5 hashing function in tests, only used to test md5() function, not for security purposes. -->
<Match>
<Class name="com.teragrep.pth_10.evalTest"/>
<Bug pattern="WEAK_MESSAGE_DIGEST_MD5"/>
</Match>
</FindBugsFilter>