%PDF- %PDF-
Direktori : /usr/local/go119/src/cmd/go/testdata/script/ |
Current File : //usr/local/go119/src/cmd/go/testdata/script/generate_goroot_PATH.txt |
# https://go.dev/issue/51473: to avoid the need for generators to rely on # runtime.GOROOT, 'go generate' should run the test with its own GOROOT/bin # at the beginning of $PATH. [short] skip [!plan9] env PATH= [plan9] env path= go generate . [!plan9] env PATH=$WORK${/}bin [plan9] env path=$WORK${/}bin go generate . -- go.mod -- module example go 1.19 -- main.go -- //go:generate go run . package main import ( "fmt" "os" "os/exec" ) func main() { _, err := exec.LookPath("go") if err != nil { fmt.Println(err) os.Exit(1) } } -- $WORK/bin/README.txt -- This directory contains no executables.