aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/os/exec/exec_posix_test.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/os/exec/exec_posix_test.go b/src/os/exec/exec_posix_test.go
index a0880c43ed..e583039453 100644
--- a/src/os/exec/exec_posix_test.go
+++ b/src/os/exec/exec_posix_test.go
@@ -129,7 +129,7 @@ func TestImplicitPWD(t *testing.T) {
// (We could perhaps refactor helperCommand to use a flag or switch on the
// value of argv[0] instead, but that doesn't seem worth the trouble at
// the moment.)
- cmd := exec.Command("pwd")
+ cmd := exec.Command("pwd", "-L")
cmd.Dir = tc.dir
var pwds []string