mirror of
https://github.com/golang/go
synced 2024-11-05 14:56:10 -07:00
92496828d1
Suggested fixes was totally broken (invalid command) and many others were not in correct sorted order. There were lots of golden entries that were no longer used. The regeneration script itself was broken The definition tests are skipped, so the entries were not regenerated. Files must have been hand edited, we probably need to document how to generate them somewhere. Change-Id: I1c021aeadd81f08f4572c2124f0c61912a3cd89e Reviewed-on: https://go-review.googlesource.com/c/tools/+/196987 Run-TryBot: Ian Cottrell <iancottrell@google.com> TryBot-Result: Gobot Gobot <gobot@golang.org> Reviewed-by: Rebecca Stambler <rstambler@golang.org>
7 lines
164 B
Bash
Executable File
7 lines
164 B
Bash
Executable File
#!/bin/bash
|
|
|
|
find ./internal/lsp/ -name *.golden -delete
|
|
go test ./internal/lsp/source -golden
|
|
go test ./internal/lsp/ -golden
|
|
go test ./internal/lsp/cmd -golden
|