github.com/megatontech/mynoteforgo@v0.0.0-20200507084910-5d0c6ea6e890/源码/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 }