aboutsummaryrefslogtreecommitdiff
path: root/src/cmd/go/testdata/script/run_issue11709.txt
blob: c8ba9982b20039a2000305687c1e8a0ea071829e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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)
	}
}