diff options
| author | Dmitry Vyukov <dvyukov@google.com> | 2025-04-02 05:50:21 -0700 |
|---|---|---|
| committer | Dmitry Vyukov <dvyukov@google.com> | 2025-04-02 16:54:27 +0000 |
| commit | 996a961865892d8b81ae3adccb482161e6994c41 (patch) | |
| tree | 3d024909d79621e5dde83c977b7d227f7b910e79 /pkg/fuzzer/queue/queue.go | |
| parent | fe048bb3c75adb6fef7300aad81e18aabce4a075 (diff) | |
pkg/fuzzer/queue: add Status.String
Otherwise it's hard to understand in error messages what 1/2/3 mean.
Diffstat (limited to 'pkg/fuzzer/queue/queue.go')
| -rw-r--r-- | pkg/fuzzer/queue/queue.go | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/pkg/fuzzer/queue/queue.go b/pkg/fuzzer/queue/queue.go index 37e69837f..ca2d76092 100644 --- a/pkg/fuzzer/queue/queue.go +++ b/pkg/fuzzer/queue/queue.go @@ -213,6 +213,7 @@ func (r *Result) GlobFiles() []string { type Status int +//go:generate go run golang.org/x/tools/cmd/stringer -type Status const ( Success Status = iota ExecFailure // For e.g. serialization errors. |
