Skip to content

Commit

Permalink
Show reports folder link instead of sample report. (google#93)
Browse files Browse the repository at this point in the history
* Show reports folder link instead of sample report.

Also, make experiment data its own section for easy scroll and
visibility.

* Fix review comments.

* Fix again.
  • Loading branch information
inferno-chromium authored Mar 11, 2020
1 parent 94de192 commit 9fd60c9
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 11 deletions.
11 changes: 7 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,10 +27,13 @@ See [a sample report](https://www.fuzzbench.com/reports/sample/index.html).

## Sample Report

You can view a sample report
[here](https://www.fuzzbench.com/reports/sample/index.html).
This report is generated using 10 fuzzers against 24 real-world benchmarks,
with 20 trials each and over a duration of 24 hours.
You can view our sample report
[here](https://www.fuzzbench.com/reports/sample/index.html) and
our periodically generated reports
[here](https://www.fuzzbench.com/reports/index.html).
The sample report is generated using 10 fuzzers against 24 real-world
benchmarks, with 20 trials each and over a duration of 24 hours.
The raw data in compressed CSV format can be found at the end of the report.

When analyzing reports, we recommend:
* Checking the strengths and weaknesses of a fuzzer against various benchmarks.
Expand Down
7 changes: 5 additions & 2 deletions analysis/report_templates/default.html
Original file line number Diff line number Diff line change
Expand Up @@ -142,8 +142,10 @@ <h5 class="center-align">Mann-Whitney U test</h4>
</div> <!-- id="{{ benchmark.name }}" -->
{% endfor %}

<div class="divider"></div>
See the <a href="data.csv.gz">raw data</a> for this report.
<div id="data" class="section scrollspy">
<h2 class="green-text text-darken-3">experiment data</h2>
You can download the raw data for this report <a href="data.csv.gz">here</a>.
</div> <!-- id="data" -->

</div> <!-- class="col" -->

Expand All @@ -153,6 +155,7 @@ <h5 class="center-align">Mann-Whitney U test</h4>
{% for benchmark in experiment.benchmarks %}
<li><a href="#{{ benchmark.name }}">{{ benchmark.name }}</a></li>
{% endfor %}
<li><a href="#data">experiment data</a></li>
</ul>
</div>

Expand Down
12 changes: 7 additions & 5 deletions docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -51,11 +51,13 @@ FuzzBench, submit it, and get benchmark results.

## Sample report

You can view a sample report
[here](https://www.fuzzbench.com/reports/sample/index.html).
This report is generated using 10 fuzzers against 24 real-world benchmarks,
with 20 trials each and over a duration of 24 hours.
See [raw data](https://www.fuzzbench.com/reports/sample/data.csv.gz).
You can view our sample report
[here](https://www.fuzzbench.com/reports/sample/index.html) and
our periodically generated reports
[here](https://www.fuzzbench.com/reports/index.html).
The sample report is generated using 10 fuzzers against 24 real-world
benchmarks, with 20 trials each and over a duration of 24 hours.
The raw data in compressed CSV format can be found at the end of the report.

When analyzing reports, we recommend:
* Checking the strengths and weaknesses of a fuzzer against various benchmarks.
Expand Down

0 comments on commit 9fd60c9

Please sign in to comment.