Text file src/cmd/go/testdata/script/cover_switch_toolchain.txt
1 go test -cover -n ./... 2 [!GOOS:windows] stderr $GOROOT'/bin/go tool covdata' 3 [GOOS:windows] stderr '\\\\bin\\\\go" tool covdata' 4 5 -- go.mod -- 6 module example.com/m 7 8 go 1.25.0 9 -- m.go -- 10 package main 11 12 func main() {} 13