$OpenBSD: patch-src_os_signal_signal_cgo_test_go,v 1.2 2019/03/16 13:37:29 jsing Exp $

Index: src/os/signal/signal_cgo_test.go
--- src/os/signal/signal_cgo_test.go.orig
+++ src/os/signal/signal_cgo_test.go
@@ -20,6 +20,7 @@ import (
 	"os"
 	"os/exec"
 	"os/signal/internal/pty"
+	"runtime"
 	"strconv"
 	"strings"
 	"sync"
@@ -29,6 +30,9 @@ import (
 )
 
 func TestTerminalSignal(t *testing.T) {
+	if runtime.GOOS == "openbsd" && runtime.GOARCH == "386" {
+		t.Skip("Skipping - fails on openbsd/386")
+	}
 	const enteringRead = "test program entering read"
 	if os.Getenv("GO_TEST_TERMINAL_SIGNALS") != "" {
 		var b [1]byte
