diff options
Diffstat (limited to 'src/syscall/exec_windows_test.go')
| -rw-r--r-- | src/syscall/exec_windows_test.go | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/syscall/exec_windows_test.go b/src/syscall/exec_windows_test.go index 5cacf42b6b..90a13af8d1 100644 --- a/src/syscall/exec_windows_test.go +++ b/src/syscall/exec_windows_test.go @@ -6,6 +6,7 @@ package syscall_test import ( "fmt" + "internal/testenv" "os" "os/exec" "path/filepath" @@ -73,7 +74,7 @@ func TestChangingProcessParent(t *testing.T) { // run parent process - parent := exec.Command(os.Args[0], "-test.run=^TestChangingProcessParent$") + parent := exec.Command(testenv.Executable(t), "-test.run=^TestChangingProcessParent$") parent.Env = append(os.Environ(), "GO_WANT_HELPER_PROCESS=parent") err := parent.Start() if err != nil { @@ -96,7 +97,7 @@ func TestChangingProcessParent(t *testing.T) { } defer syscall.CloseHandle(ph) - child := exec.Command(os.Args[0], "-test.run=^TestChangingProcessParent$") + child := exec.Command(testenv.Executable(t), "-test.run=^TestChangingProcessParent$") child.Env = append(os.Environ(), "GO_WANT_HELPER_PROCESS=child", "GO_WANT_HELPER_PROCESS_FILE="+childDumpPath) |
