aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIan Lance Taylor <iant@golang.org>2017-10-13 12:22:20 -0700
committerRuss Cox <rsc@golang.org>2017-10-25 20:23:47 +0000
commitf69668e1d0831ab3d3c8a6590e0d5b477ae74c1a (patch)
treeb9efe507dfd596e2bc4777c15a9554b7c8d1d67a
parent9be38a15e486f09663cf324539e2cb5045d54d80 (diff)
downloadgo-f69668e1d0831ab3d3c8a6590e0d5b477ae74c1a.tar.gz
go-f69668e1d0831ab3d3c8a6590e0d5b477ae74c1a.zip
[release-branch.go1.9] os: skip TestPipeThreads as flaky for 1.9
Updates #21559 Change-Id: I90fa8b4ef97c4251440270491ac4c833d76ee872 Reviewed-on: https://go-review.googlesource.com/70771 Run-TryBot: Russ Cox <rsc@golang.org> TryBot-Result: Gobot Gobot <gobot@golang.org> Reviewed-by: Ian Lance Taylor <iant@golang.org>
-rw-r--r--src/os/os_test.go2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/os/os_test.go b/src/os/os_test.go
index dbe4ff8830..d04ba917b3 100644
--- a/src/os/os_test.go
+++ b/src/os/os_test.go
@@ -2176,6 +2176,8 @@ func TestPipeThreads(t *testing.T) {
t.Skip("skipping on Plan 9; does not support runtime poller")
}
+ testenv.SkipFlaky(t, 21559)
+
threads := 100
// OpenBSD has a low default for max number of files.