diff options
Diffstat (limited to 'src/os/exec/exec_posix_test.go')
| -rw-r--r-- | src/os/exec/exec_posix_test.go | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/os/exec/exec_posix_test.go b/src/os/exec/exec_posix_test.go index f0401377e8..d366840bb1 100644 --- a/src/os/exec/exec_posix_test.go +++ b/src/os/exec/exec_posix_test.go @@ -49,6 +49,7 @@ func TestCredentialNoSetGroups(t *testing.T) { maySkipHelperCommand("echo") t.Skip("unsupported on Android") } + t.Parallel() u, err := user.Current() if err != nil { @@ -186,6 +187,8 @@ func TestImplicitPWD(t *testing.T) { // (This checks that the implementation for https://go.dev/issue/50599 doesn't // break existing users who may have explicitly mismatched the PWD variable.) func TestExplicitPWD(t *testing.T) { + t.Parallel() + maySkipHelperCommand("pwd") testenv.MustHaveSymlink(t) |
