github.com/zxy12/go_duplicate_112_new@v0.0.0-20200807091221-747231827200/src/cmd/go/testdata/script/cover_pkgall_runtime.txt (about) 1 # Issue 23882 2 3 [short] skip 4 5 go test -coverpkg=all x 6 stdout ok[\s\S]+?coverage 7 8 [!race] stop 9 10 go test -coverpkg=all -race x 11 stdout ok[\s\S]+?coverage 12 13 -- x/x.go -- 14 package x 15 import _ "runtime" 16 func F() {} 17 18 -- x/x_test.go -- 19 package x 20 import "testing" 21 func TestF(t *testing.T) { F() }