mirror of
https://github.com/golang/go
synced 2024-11-18 14:14:46 -07:00
os/signal: skip TestCtrlBreak on windows/386 temporarily
Update #10215. Change-Id: Ib588f90279a4ef5461492553d50ad77c742b3560 Signed-off-by: Shenghou Ma <minux@golang.org> Reviewed-on: https://go-review.googlesource.com/7971 Reviewed-by: Brad Fitzpatrick <bradfitz@golang.org> Reviewed-by: Alex Brainman <alex.brainman@gmail.com>
This commit is contained in:
parent
7180cfa864
commit
398f56fe22
@ -10,6 +10,7 @@ import (
|
||||
"os"
|
||||
"os/exec"
|
||||
"path/filepath"
|
||||
"runtime"
|
||||
"syscall"
|
||||
"testing"
|
||||
"time"
|
||||
@ -31,6 +32,9 @@ func sendCtrlBreak(t *testing.T, pid int) {
|
||||
}
|
||||
|
||||
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
|
||||
const source = `
|
||||
package main
|
||||
|
Loading…
Reference in New Issue
Block a user