blob: 5ac968b7d0a6fca4b8c45059e548b8e55623a3eb [file] [log] [blame]
env GO111MODULE=off
# go clean -testcache
# should work (see golang.org/issue/29757).
cd x
go test x_test.go
go clean -testcache
go test x_test.go
! stdout 'cached'
-- x/x_test.go --
package x_test
import (
"testing"
)
func TestMain(t *testing.T) {
}