aboutsummaryrefslogtreecommitdiff
path: root/libgo/go/os/pipe_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'libgo/go/os/pipe_test.go')
-rw-r--r--libgo/go/os/pipe_test.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/libgo/go/os/pipe_test.go b/libgo/go/os/pipe_test.go
index 4c53bc9..2e93e39 100644
--- a/libgo/go/os/pipe_test.go
+++ b/libgo/go/os/pipe_test.go
@@ -3,7 +3,7 @@
// license that can be found in the LICENSE file.
// Test broken pipes on Unix systems.
-// +build !plan9,!nacl,!js
+// +build !plan9,!js
package os_test
@@ -428,7 +428,7 @@ func TestFdReadRace(t *testing.T) {
go func() {
defer wg.Done()
var buf [10]byte
- r.SetReadDeadline(time.Now().Add(time.Second))
+ r.SetReadDeadline(time.Now().Add(time.Minute))
c <- true
if _, err := r.Read(buf[:]); os.IsTimeout(err) {
t.Error("read timed out")