mirror of
https://github.com/golang/go
synced 2024-11-11 23:50:22 -07:00
os/exec: enable inherited file descriptor test
Fixes #2596. R=golang-dev CC=golang-dev https://golang.org/cl/5498061
This commit is contained in:
parent
5e5592cf30
commit
f2c9d22850
@ -256,13 +256,6 @@ func TestHelperProcess(*testing.T) {
|
|||||||
fmt.Printf("ReadAll from fd 3: %v", err)
|
fmt.Printf("ReadAll from fd 3: %v", err)
|
||||||
os.Exit(1)
|
os.Exit(1)
|
||||||
}
|
}
|
||||||
// TODO(bradfitz): remove this block once the builders are restarted
|
|
||||||
// with a new binary including be47ea17bea0 (set CLOEXEC on epoll/kqueue fds)
|
|
||||||
// and 5500053 (don't trust O_CLOEXEC on OS X).
|
|
||||||
{
|
|
||||||
os.Stderr.Write(bs)
|
|
||||||
os.Exit(0)
|
|
||||||
}
|
|
||||||
// Now verify that there are no other open fds.
|
// Now verify that there are no other open fds.
|
||||||
var files []*os.File
|
var files []*os.File
|
||||||
for wantfd := os.Stderr.Fd() + 2; wantfd <= 100; wantfd++ {
|
for wantfd := os.Stderr.Fd() + 2; wantfd <= 100; wantfd++ {
|
||||||
|
Loading…
Reference in New Issue
Block a user