Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
os/exec: fix Win32 tests missing
chcp
`%SystemRoot%/System32/chcp.com` is a tool on Windows that is used to change the active code page in the console. `go test os/exec` can fail with: "'chcp' is not recognized as an internal or external command" The test uses a custom PATH variable but does not include `%SystemRoot%/System32`. Always append that to PATH. Ref golang#24709
- Loading branch information