]> Cypherpunks repositories - gostls13.git/commitdiff
os/signal: skip TestCtrlBreak on windows/386 temporarily
authorShenghou Ma <minux@golang.org>
Tue, 24 Mar 2015 00:41:35 +0000 (20:41 -0400)
committerMinux Ma <minux@golang.org>
Tue, 24 Mar 2015 01:38:05 +0000 (01:38 +0000)
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>
src/os/signal/signal_windows_test.go

index f3e6706b7521edd9499e5b85affc357ea1e86aed..45c86f0e14c1c2aca1006ec3a0945a2782ea5fc6 100644 (file)
@@ -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