diff --git a/src/runtime/runtime-lldb_test.go b/src/runtime/runtime-lldb_test.go index c7b769ce83..985745d97c 100644 --- a/src/runtime/runtime-lldb_test.go +++ b/src/runtime/runtime-lldb_test.go @@ -164,6 +164,7 @@ func TestLldbPython(t *testing.T) { // disable it for this test. cmd := exec.Command(testenv.GoToolPath(t), "build", "-gcflags=all=-N -l", "-ldflags=-compressdwarf=false", "-o", "a.exe") cmd.Dir = dir + cmd.Env = append(os.Environ(), "GOPATH=") // issue 31100 out, err := cmd.CombinedOutput() if err != nil { t.Fatalf("building source %v\n%s", err, out)