diff options
| author | Dmitry Vyukov <dvyukov@google.com> | 2024-05-31 10:18:58 +0200 |
|---|---|---|
| committer | Dmitry Vyukov <dvyukov@google.com> | 2024-06-03 15:04:36 +0000 |
| commit | f0e94da92f1381e56ecd1c28575aaac54cdfc79d (patch) | |
| tree | df18acb69e83ac114eb0306751b52beaeb2446e9 /tools/syz-testbed/html.go | |
| parent | 463135dcfa641612fbcc002f3a764880389628f2 (diff) | |
tools/syz-testbed: allow to view unaligned records
This is useful if instances run for different amount of time.
It's hard to make any sense out of aligned records in that case.
Diffstat (limited to 'tools/syz-testbed/html.go')
| -rw-r--r-- | tools/syz-testbed/html.go | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/tools/syz-testbed/html.go b/tools/syz-testbed/html.go index 679099a8a..c28020df3 100644 --- a/tools/syz-testbed/html.go +++ b/tools/syz-testbed/html.go @@ -203,9 +203,6 @@ func (ctx *TestbedContext) genSimpleTableController(method func(view StatView) ( func (ctx *TestbedContext) httpMainStatsTable(urlPrefix string, view StatView, r *http.Request) (*uiTable, error) { alignBy := r.FormValue("align") - if alignBy == "" { - alignBy = "fuzzing" - } table, err := view.AlignedStatsTable(alignBy) if err != nil { return nil, fmt.Errorf("stat table generation failed: %w", err) |
