Skip to content

Commit

Permalink
os/signal: skip TestCtrlBreak on windows/386 temporarily
Browse files Browse the repository at this point in the history
Update golang#10215.

Change-Id: Ib588f90279a4ef5461492553d50ad77c742b3560
Signed-off-by: Shenghou Ma <[email protected]>
Reviewed-on: https://go-review.googlesource.com/7971
Reviewed-by: Brad Fitzpatrick <[email protected]>
Reviewed-by: Alex Brainman <[email protected]>
  • Loading branch information
minux committed Mar 24, 2015
1 parent 7180cfa commit 398f56f
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/os/signal/signal_windows_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ import (
"os"
"os/exec"
"path/filepath"
"runtime"
"syscall"
"testing"
"time"
Expand All @@ -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
Expand Down

0 comments on commit 398f56f

Please sign in to comment.