diff options
author | Ian Lance Taylor <ian@gcc.gnu.org> | 2013-11-11 19:41:00 +0000 |
---|---|---|
committer | Ian Lance Taylor <ian@gcc.gnu.org> | 2013-11-11 19:41:00 +0000 |
commit | eb47f18904bc0ec0556a217beb0ae15a4a2d9b11 (patch) | |
tree | 2bbaf1762d7325d57f54c68f9c0e55f09a8efd84 /libgo/go | |
parent | 1e563667330c592df0f3dab2a19655cf6e7cab12 (diff) | |
download | gcc-eb47f18904bc0ec0556a217beb0ae15a4a2d9b11.tar.gz |
os: Do not try to run go command in test.
From-SVN: r204684
Diffstat (limited to 'libgo/go')
-rw-r--r-- | libgo/go/os/os_test.go | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libgo/go/os/os_test.go b/libgo/go/os/os_test.go index 972df364ae7..882e3da1517 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) |