1
0
mirror of https://github.com/golang/go synced 2024-09-30 16:18:35 -06:00

runtime: use stripped test environment for TestGdbPython

Most runtime tests that invoke the compiler to build a sub-test binary
do so with a special environment constructed by testEnv that strips
out environment variables that should apply to the test but not to the
build.

Fix TestGdbPython to use this test environment when invoking go build,
like other tests do.

Change-Id: Iafdf89d4765c587cbebc427a5d61cb8a7e71b326
Reviewed-on: https://go-review.googlesource.com/10455
Reviewed-by: Russ Cox <rsc@golang.org>
This commit is contained in:
Austin Clements 2015-05-26 15:21:18 -04:00
parent 0c02b33acd
commit 4a1957d0aa

View File

@ -59,7 +59,7 @@ func TestGdbPython(t *testing.T) {
cmd := exec.Command("go", "build", "-o", "a.exe") cmd := exec.Command("go", "build", "-o", "a.exe")
cmd.Dir = dir cmd.Dir = dir
out, err := cmd.CombinedOutput() out, err := testEnv(cmd).CombinedOutput()
if err != nil { if err != nil {
t.Fatalf("building source %v\n%s", err, out) t.Fatalf("building source %v\n%s", err, out)
} }