1
0
mirror of https://github.com/golang/go synced 2024-11-27 00:11:19 -07:00

cmd/dist: disable misc/cgo/fortran test on dragonfly

Updates #14544.

Change-Id: I24ab8e6f9ad9d290a672216fc2f50f78c3ed8812
Reviewed-on: https://go-review.googlesource.com/21014
Run-TryBot: Mikio Hara <mikioh.mikioh@gmail.com>
TryBot-Result: Gobot Gobot <gobot@golang.org>
Reviewed-by: Brad Fitzpatrick <bradfitz@golang.org>
This commit is contained in:
Mikio Hara 2016-03-23 09:14:58 +09:00 committed by Brad Fitzpatrick
parent 68e86e6dfa
commit bafa0275db

View File

@ -445,7 +445,7 @@ func (t *tester) registerTests() {
if fortran == "" {
fortran, _ = exec.LookPath("gfortran")
}
if fortran != "" {
if fortran != "" && t.goos != "dragonfly" { // see golang.org/issue/14544
t.tests = append(t.tests, distTest{
name: "cgo_fortran",
heading: "../misc/cgo/fortran",