From dd87e33d88eadaf5302895fb91b0a0e2e16b136e Mon Sep 17 00:00:00 2001 From: cui fliter Date: Fri, 18 Nov 2022 14:06:56 +0800 Subject: os: use testenv.Command instead of exec.Command in tests testenv.Command sets a default timeout based on the test's deadline and sends SIGQUIT (where supported) in case of a hang. Change-Id: I84d469d12ca1f39175b713ca41e7cd2202d11d96 Reviewed-on: https://go-review.googlesource.com/c/go/+/451895 Auto-Submit: Bryan Mills TryBot-Result: Gopher Robot Run-TryBot: Bryan Mills Reviewed-by: Bryan Mills Reviewed-by: Ian Lance Taylor --- src/os/exec/exec_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/os/exec/exec_test.go') diff --git a/src/os/exec/exec_test.go b/src/os/exec/exec_test.go index 67e2d256b4..c2f643a645 100644 --- a/src/os/exec/exec_test.go +++ b/src/os/exec/exec_test.go @@ -752,7 +752,7 @@ func TestExtraFiles(t *testing.T) { tempdir := t.TempDir() exe := filepath.Join(tempdir, "read3.exe") - c := exec.Command(testenv.GoToolPath(t), "build", "-o", exe, "read3.go") + c := testenv.Command(t, testenv.GoToolPath(t), "build", "-o", exe, "read3.go") // Build the test without cgo, so that C library functions don't // open descriptors unexpectedly. See issue 25628. c.Env = append(os.Environ(), "CGO_ENABLED=0") -- cgit v1.3