diff options
author | Ted Kremenek <kremenek@apple.com> | 2008-07-08 21:25:35 +0000 |
---|---|---|
committer | Ted Kremenek <kremenek@apple.com> | 2008-07-08 21:25:35 +0000 |
commit | f794675b3049f088051b25c6b63fab05a3ebb302 (patch) | |
tree | 56b6b1092ba467881ffba59a421b644eb7adc41e | |
parent | 5f6b632391e24b08ead3e62ba2e2765e770382ed (diff) |
More info on filing static analysis bug reports.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@53250 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | www/StaticAnalysis.html | 2 | ||||
-rw-r--r-- | www/StaticAnalysisUsage.html | 19 |
2 files changed, 17 insertions, 4 deletions
diff --git a/www/StaticAnalysis.html b/www/StaticAnalysis.html index 04e162089c..a53caaeb7d 100644 --- a/www/StaticAnalysis.html +++ b/www/StaticAnalysis.html @@ -105,7 +105,7 @@ algorithms to reduce the amount of work it must do to find bugs.</li> <li><a href="StaticAnalysisUsage.html#Output">Output of the Analyzer</a></li> <li><a href="StaticAnalysisUsage.html#RecommendedUsageGuidelines">Recommended Usage Guidelines</a></li> <li><a href="StaticAnalysisUsage.html#Debugging">Debugging the Analyzer</a></li> - <li><a href="StaticAnalysisUsage.html#filingbugs">Filing Bugs</a></li> + <li><a href="StaticAnalysisUsage.html#filingbugs">Filing Bugs and Feature Requests</a></li> </ul> </div> diff --git a/www/StaticAnalysisUsage.html b/www/StaticAnalysisUsage.html index 204d755c51..aa52cfdcdf 100644 --- a/www/StaticAnalysisUsage.html +++ b/www/StaticAnalysisUsage.html @@ -267,10 +267,23 @@ calling <tt>clang</tt>). <tt>ccc-analyzer</tt> tries to correctly forward all the arguments over to <tt>gcc</tt>, but this may not work perfectly (please report bugs of this kind). -<h2 id="filingbugs">Filing Bugs</h2> +<h2 id="filingbugs">Filing Bugs and Feature Requests</h2> -<p>We encourage users to file bug reports for any problems that they -encounter.</p> +<p>We encourage users to file bug reports for any problems that they encounter. +We also welcome feature requests. When filing a bug report, please do the +following:</p> + +<ul> + +<li>Include the checker build (for prebuilt Mac OS X binaries) or the SVN +revision number.</li> + +<li>Provide a self-encapsulated, reduced test case that exhibits the issue + you are experiencing.</li> + +<li>Test cases don't tell us everything. Please briefly describe the problem you are seeing.</li> + +</ul> <h3>Outside Apple</h3> |