| Index: fuzzer/res/imp/README.md
|
| diff --git a/fuzzer/res/imp/README.md b/fuzzer/res/imp/README.md
|
| index 882763f44b581a9967541c915ead83c800fa0e39..cd23981ed3c6b2abe712a296334a4602ef18cfef 100644
|
| --- a/fuzzer/res/imp/README.md
|
| +++ b/fuzzer/res/imp/README.md
|
| @@ -1,27 +1,34 @@
|
| # Fuzzer Polymer Components
|
|
|
| +**fuzzer-info-sk:** Loads detailed fuzz reports from server and
|
| +shows how many broke at various files/functions/lines. It automatically sorts the files it shows
|
| +based on the number of filtered fuzzes (based on an include list and exclude list).
|
| +Uses fuzzer-collapse-file-sk.
|
| +
|
| +**fuzzer-collapse-file-sk:** Shows how many fuzzes broke at various functions in a given file.
|
| +It automatically sorts the functions it shows
|
| +based on the number of filtered fuzzes Uses fuzzer-collapse-function-sk.
|
| +
|
| +**fuzzer-collapse-function-sk:** Shows how many fuzzes broke at various lines in a given function.
|
| +This element is used because it vastly simplifies the dynamic sum of how many fuzzes are in a file.
|
| +Can filter fuzzes based on an include list and exclude list. Uses fuzzer-collapse-details-sk.
|
| +
|
| +**fuzzer-collapse-details-sk:** Shows the details of a set of fuzzes.
|
| +The view can be clicked to expand and show the individual stack traces.
|
| +Can filter fuzzes based on an include list and exclude list. Uses fuzzer-stacktrace-sk.
|
| +
|
| **fuzzer-stacktrace-sk:** A visualization of a stacktrace.
|
| Defaults to showing the top 8 rows. Click to expand entire thing.
|
|
|
| -**fuzzer-collapse-details-sk:** Shows the details of a set of fuzzes.
|
| -For now, only binary ones are supported, but the api fuzzes shouldn't be too hard to add.
|
| -If extra details are supplied (in binaryReports),
|
| -the view can be clicked to expand and show the individual stack traces.
|
| -
|
| -**fuzzer-collapse-file-sk:** Shows how many fuzzes broke at various functions and lines in a given file.
|
| -Uses fuzzer-collapse-details-sk.
|
| -
|
| -**fuzzer-file-list-sk:** Loads fuzz summary statistics from server and
|
| -shows how many broke at various files/functions/lines. Uses fuzzer-collapse-file-sk.
|
| -
|
| -**fuzzer-info-sk:** Loads detailed fuzz reports from server and
|
| -shows how many broke at various files/functions/lines. Uses fuzzer-collapse-file-sk.
|
| +**fuzzer-filter-sk:** Allows the user to select an include and an exclude filter list.
|
| +It mirrors the choices to the URL bar, in the form of query parameters. On load, it pulls the
|
| +lists from the query params.
|
|
|
| **fuzzer-status-sk:** Shows the current commit the fuzzer is working on and if there
|
| are any pending fuzzes.
|
|
|
| -**fuzzer-count-sk:** Shows the count of newly found bad and grey fuzzes and the count
|
| -of total bad/grey fuzzes.
|
| +**fuzzer-summary-sk:** Shows the count of newly found bad and grey fuzzes and the count
|
| +of total bad/grey fuzzes for all categories.
|
|
|
| ## Viewing the Demos:
|
|
|
|
|