source: proiecte/HadoopJUnit/hadoop-0.20.1/src/test/findbugsExcludeFile.xml @ 141

Last change on this file since 141 was 120, checked in by (none), 14 years ago

Added the mail files for the Hadoop JUNit Project

  • Property svn:executable set to *
File size: 1.7 KB
Line 
1<FindBugsFilter>
2     <Match>
3       <Package name="org.apache.hadoop.record.compiler.generated" />
4     </Match>
5     <Match>
6       <Bug pattern="EI_EXPOSE_REP" />
7     </Match>
8     <Match>
9       <Bug pattern="EI_EXPOSE_REP2" />
10     </Match>
11     <Match>
12       <Bug pattern="SE_COMPARATOR_SHOULD_BE_SERIALIZABLE" />
13     </Match>
14     <Match>
15       <Class name="~.*_jsp" />
16       <Bug pattern="DLS_DEAD_LOCAL_STORE" />
17     </Match>
18     <Match>
19       <Field name="_jspx_dependants" />
20       <Bug pattern="UWF_UNWRITTEN_FIELD" />
21     </Match>
22     <!--
23       Inconsistent synchronization for Client.Connection.out is
24       is intentional to make a connection to be closed instantly.
25     --> 
26     <Match>
27       <Class name="org.apache.hadoop.ipc.Client$Connection" />
28       <Field name="out" />
29       <Bug pattern="IS2_INCONSISTENT_SYNC" />
30     </Match>
31     <!--
32       TFile
33     -->
34      <Match>
35       <Class name="org.apache.hadoop.io.file.tfile.Chunk$ChunkDecoder" />
36       <Method name="close" />
37       <Bug pattern="SR_NOT_CHECKED" />
38      </Match>
39    <!--
40      The purpose of skip() is to drain remaining bytes of the chunk-encoded
41          stream (one chunk at a time). The termination condition is checked by
42          checkEOF().
43    -->
44     <Match>
45       <Class name="org.apache.hadoop.io.file.tfile.Utils" />
46       <Method name="writeVLong" />
47       <Bug pattern="SF_SWITCH_FALLTHROUGH" />
48     </Match>
49    <!--
50          The switch condition fall through is intentional and for performance
51          purposes.
52    -->
53     <Match>
54       <Class name="org.apache.hadoop.mapred.Task" />
55       <Method name="reportFatalError" />
56       <Bug pattern="DM_EXIT" />
57     </Match>
58   
59</FindBugsFilter>
Note: See TracBrowser for help on using the repository browser.