File tree Expand file tree Collapse file tree 1 file changed +7
-0
lines changed
gopls/internal/test/integration/misc Expand file tree Collapse file tree 1 file changed +7
-0
lines changed Original file line number Diff line number Diff line change @@ -94,6 +94,13 @@ var FooErr error = errors.New("foo")
94
94
func TestStaticcheckRelatedInfo (t * testing.T ) {
95
95
testenv .NeedsGo1Point (t , 20 ) // staticcheck is only supported at Go 1.20+
96
96
97
+ // CL 583778 causes buildir not to run on packages that use
98
+ // range-over-func, since it might otherwise crash. But nearly
99
+ // all packages will soon meet this description, so the
100
+ // analyzers in this test will not run, and the test will fail.
101
+ // TODO(adonovan): reenable once dominikh/go-tools#1494 is fixed.
102
+ t .Skip ("disabled until buildir supports range-over-func (dominikh/go-tools#1494)" )
103
+
97
104
// TODO(golang/go#65249): re-enable and fix this test once we
98
105
// update go.mod to go1.23 so that gotypesalias=1 becomes the default.
99
106
if aliases .Enabled () {
You can’t perform that action at this time.
0 commit comments