diff options
author | Adin Scannell <ascannell@google.com> | 2020-08-31 17:07:35 -0700 |
---|---|---|
committer | Andrei Vagin <avagin@gmail.com> | 2020-09-09 17:53:10 -0700 |
commit | ae2e5a38a5e7fb9035d4b1c959a98ef306788d89 (patch) | |
tree | 4099dbcfce92ef1b66f578bff160eb97adf36439 /tools/nogo/register.go | |
parent | 219fa4845f62baa670f047be198179846a4cb199 (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 } |