github.com/zxy12/go_duplicate_112_new@v0.0.0-20200807091221-747231827200/src/cmd/go/testdata/script/clean_testcache.txt (about) 1 # go clean -testcache 2 # should work (see golang.org/issue/29757). 3 cd x 4 go test x_test.go 5 go clean -testcache 6 go test x_test.go 7 ! stdout 'cached' 8 9 10 -- x/x_test.go -- 11 package x_test 12 import ( 13 "testing" 14 ) 15 func TestMain(t *testing.T) { 16 }