aboutsummaryrefslogtreecommitdiff
path: root/src/pkg/os/exec/exec_test.go
diff options
context:
space:
mode:
authorIan Lance Taylor <iant@golang.org>2011-12-19 12:57:49 -0800
committerIan Lance Taylor <iant@golang.org>2011-12-19 12:57:49 -0800
commit384329592a72e8ce7cfdacb1f3cf2d05af07562a (patch)
tree0a3324e1f144f125dcd5c635efc290eb8ff0262d /src/pkg/os/exec/exec_test.go
parent1d0f93b4be68263ec7e07255e8fe20e1168c9bba (diff)
downloadgo-384329592a72e8ce7cfdacb1f3cf2d05af07562a.tar.xz
net, syscall, os: set CLOEXEC flag on epoll/kqueue descriptor
Enable new test in os. R=dave, iant, rsc CC=golang-dev https://golang.org/cl/5494061
Diffstat (limited to 'src/pkg/os/exec/exec_test.go')
-rw-r--r--src/pkg/os/exec/exec_test.go6
1 files changed, 0 insertions, 6 deletions
diff --git a/src/pkg/os/exec/exec_test.go b/src/pkg/os/exec/exec_test.go
index 4cd346a68b..a015cbe96c 100644
--- a/src/pkg/os/exec/exec_test.go
+++ b/src/pkg/os/exec/exec_test.go
@@ -256,12 +256,6 @@ func TestHelperProcess(*testing.T) {
fmt.Printf("ReadAll from fd 3: %v", err)
os.Exit(1)
}
- // TODO(bradfitz,iant): the rest of this test is disabled
- // for now. remove this block once 5494061 is in.
- {
- os.Stderr.Write(bs)
- os.Exit(0)
- }
// Now verify that there are no other open fds.
var files []*os.File
for wantfd := os.Stderr.Fd() + 2; wantfd <= 100; wantfd++ {