aboutsummaryrefslogtreecommitdiff
path: root/src/runtime/semasleep_test.go
diff options
context:
space:
mode:
authorDavid du Colombier <0intro@gmail.com>2018-09-13 21:15:34 +0200
committerDavid du Colombier <0intro@gmail.com>2018-09-13 19:54:03 +0000
commit7c95703c090757c4ca3f0792357e1595b03d6bca (patch)
tree999ab30025ce3b40dbbd9dbca55c68615d6f6db0 /src/runtime/semasleep_test.go
parent56dc1795e756767adb373a5bc151c9c820152025 (diff)
downloadgo-7c95703c090757c4ca3f0792357e1595b03d6bca.tar.gz
go-7c95703c090757c4ca3f0792357e1595b03d6bca.zip
runtime: don't build semasleep_test on Plan 9
CL 135015 added TestSpuriousWakeupsNeverHangSemasleep. However, this test is failing on Plan 9 because syscall.SIGIO is not defined. This change excludes semasleep_test.go on Plan 9 Fixes #27662. Change-Id: I52f9f0fe9ec3c70da5d2f586a95debbc1fe568a1 Reviewed-on: https://go-review.googlesource.com/135315 Run-TryBot: David du Colombier <0intro@gmail.com> Reviewed-by: Emmanuel Odeke <emm.odeke@gmail.com> TryBot-Result: Gobot Gobot <gobot@golang.org>
Diffstat (limited to 'src/runtime/semasleep_test.go')
-rw-r--r--src/runtime/semasleep_test.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/runtime/semasleep_test.go b/src/runtime/semasleep_test.go
index 4a8b4db338..5b2cc64483 100644
--- a/src/runtime/semasleep_test.go
+++ b/src/runtime/semasleep_test.go
@@ -2,7 +2,7 @@
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
-//+build !nacl,!windows,!js
+//+build !nacl,!plan9,!windows,!js
package runtime_test