Commit 398f56fe authored by Shenghou Ma's avatar Shenghou Ma Committed by Minux Ma

os/signal: skip TestCtrlBreak on windows/386 temporarily

Update #10215.

Change-Id: Ib588f90279a4ef5461492553d50ad77c742b3560
Signed-off-by: default avatarShenghou Ma <minux@golang.org>
Reviewed-on: https://go-review.googlesource.com/7971Reviewed-by: default avatarBrad Fitzpatrick <bradfitz@golang.org>
Reviewed-by: default avatarAlex Brainman <alex.brainman@gmail.com>
parent 7180cfa8
...@@ -10,6 +10,7 @@ import ( ...@@ -10,6 +10,7 @@ import (
"os" "os"
"os/exec" "os/exec"
"path/filepath" "path/filepath"
"runtime"
"syscall" "syscall"
"testing" "testing"
"time" "time"
...@@ -31,6 +32,9 @@ func sendCtrlBreak(t *testing.T, pid int) { ...@@ -31,6 +32,9 @@ func sendCtrlBreak(t *testing.T, pid int) {
} }
func TestCtrlBreak(t *testing.T) { func TestCtrlBreak(t *testing.T) {
if runtime.GOARCH == "386" {
t.Skip("known failing test on windows/386, see https://golang.org/issue/10215")
}
// create source file // create source file
const source = ` const source = `
package main package main
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment