From: Ian Lance Taylor Date: Mon, 11 Nov 2013 19:41:00 +0000 (+0000) Subject: os: Do not try to run go command in test. X-Git-Tag: releases/gcc-4.9.0~2886 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=eb47f18904bc0ec0556a217beb0ae15a4a2d9b11;p=thirdparty%2Fgcc.git os: Do not try to run go command in test. From-SVN: r204684 --- diff --git a/libgo/go/os/os_test.go b/libgo/go/os/os_test.go index 972df364ae79..882e3da1517d 100644 --- a/libgo/go/os/os_test.go +++ b/libgo/go/os/os_test.go @@ -1142,6 +1142,7 @@ func TestReadAtEOF(t *testing.T) { } func testKillProcess(t *testing.T, processKiller func(p *Process)) { + t.Skip("gccgo does not have a go command") dir, err := ioutil.TempDir("", "go-build") if err != nil { t.Fatalf("Failed to create temp directory: %v", err)