blob: a2d592deffdda5323cdeb4f890d2056d2ea962c3 [file] [log] [blame]
# 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) {
}