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>
"os"
"os/exec"
"path/filepath"
+ "runtime"
"syscall"
"testing"
"time"
}
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