diff options
Diffstat (limited to 'src/cmd/go/testdata/script/run_issue11709.txt')
-rw-r--r-- | src/cmd/go/testdata/script/run_issue11709.txt | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/src/cmd/go/testdata/script/run_issue11709.txt b/src/cmd/go/testdata/script/run_issue11709.txt new file mode 100644 index 0000000..c8ba998 --- /dev/null +++ b/src/cmd/go/testdata/script/run_issue11709.txt @@ -0,0 +1,15 @@ +# 'go run' should not pass extraneous environment variables to the subprocess. +go run run.go +! stdout . +! stderr . + +-- run.go -- +package main + +import "os" + +func main() { + if os.Getenv("TERM") != "" { + os.Exit(1) + } +}
\ No newline at end of file |