aboutsummaryrefslogtreecommitdiff
path: root/internal/testenv/testenv_notunix.go
diff options
context:
space:
mode:
Diffstat (limited to 'internal/testenv/testenv_notunix.go')
-rw-r--r--internal/testenv/testenv_notunix.go14
1 files changed, 14 insertions, 0 deletions
diff --git a/internal/testenv/testenv_notunix.go b/internal/testenv/testenv_notunix.go
new file mode 100644
index 000000000..74de6f0a8
--- /dev/null
+++ b/internal/testenv/testenv_notunix.go
@@ -0,0 +1,14 @@
+// Copyright 2021 The Go Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style
+// license that can be found in the LICENSE file.
+
+//go:build windows || plan9 || (js && wasm)
+// +build windows plan9 js,wasm
+
+package testenv
+
+import "os"
+
+// Sigquit is the signal to send to kill a hanging subprocess.
+// On Unix we send SIGQUIT, but on non-Unix we only have os.Kill.
+var Sigquit = os.Kill