mirror of
https://github.com/golang/go
synced 2024-11-05 18:26:10 -07:00
46bd65c853
This change attempts to fix a concurrency error that would cause textDocument/CodeLens, textDocument/Formatting, textDocument/DocumentLink, and textDocument/Hover from failing on go.mod files. The issue was that the go command would return a potential concurrency error since the ModHandle and the ModTidyHandle are both using the temporary go.mod file. Updates golang/go#37824 Change-Id: I6cd63c1f75817c7308e033aec473966536a2a3bd Reviewed-on: https://go-review.googlesource.com/c/tools/+/224917 Reviewed-by: Heschi Kreinick <heschi@google.com> Run-TryBot: Rebecca Stambler <rstambler@golang.org> TryBot-Result: Gobot Gobot <gobot@golang.org>
23 lines
474 B
Go
23 lines
474 B
Go
// Copyright 2020 The Go Authors. All rights reserved.
|
|
// Use of this source code is governed by a BSD-style
|
|
// license that can be found in the LICENSE file.
|
|
|
|
package gocommand_test
|
|
|
|
import (
|
|
"context"
|
|
"testing"
|
|
|
|
"golang.org/x/tools/internal/gocommand"
|
|
)
|
|
|
|
func TestGoVersion(t *testing.T) {
|
|
inv := gocommand.Invocation{
|
|
Verb: "version",
|
|
}
|
|
gocmdRunner := &gocommand.Runner{}
|
|
if _, err := gocmdRunner.Run(context.Background(), inv); err != nil {
|
|
t.Error(err)
|
|
}
|
|
}
|