From 5a6a7b4d4072b8742ae111275d27779f79c533e0 Mon Sep 17 00:00:00 2001 From: Robert Griesemer Date: Fri, 31 Jul 2015 15:49:16 -0700 Subject: [PATCH] x/tools/cmd/stress: don't build for Plan 9 (syscall.SIGABRT not defined) See golang/go#11975. For golang/go#11811. Change-Id: I56ee20cd798bf963afdf3c81c4745f07850f6dcc Reviewed-on: https://go-review.googlesource.com/13034 Reviewed-by: Ian Lance Taylor --- cmd/stress/stress.go | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/cmd/stress/stress.go b/cmd/stress/stress.go index f02fa2a7ac7..e0ff6b4cff3 100644 --- a/cmd/stress/stress.go +++ b/cmd/stress/stress.go @@ -2,6 +2,10 @@ // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. +// TODO: syscall.SIGABRT is not defined for Plan 9 (issue #11975) + +// +build !plan9 + // The stress utility is intended for catching of episodic failures. // It runs a given process in parallel in a loop and collects any failures. // Usage: