diff options
author | Adin Scannell <ascannell@google.com> | 2020-08-31 17:07:35 -0700 |
---|---|---|
committer | gVisor bot <gvisor-bot@google.com> | 2020-08-31 17:09:20 -0700 |
commit | 101c97d6f851abbd3024605102757da66a36551f (patch) | |
tree | 5e5154b4449c7a7dec9887cbc6e49329617e03fc /tools/nogo/register.go | |
parent | 170560cec01f99d49f4c2f09f2a5655dd376fac7 (diff) |
Change nogo failures to test failures, instead of build failures.
PiperOrigin-RevId: 329408633
Diffstat (limited to 'tools/nogo/register.go')
-rw-r--r-- | tools/nogo/register.go | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/tools/nogo/register.go b/tools/nogo/register.go index 62b499661..34b173937 100644 --- a/tools/nogo/register.go +++ b/tools/nogo/register.go @@ -26,6 +26,9 @@ func analyzers() (all []*analysis.Analyzer) { for a, _ := range analyzerConfig { all = append(all, a) } + for a, _ := range escapesConfig { + all = append(all, a) + } return all } |