mirror of https://github.com/golang/go.git
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:
parent
68e86e6dfa
commit
bafa0275db
|
|
@ -445,7 +445,7 @@ func (t *tester) registerTests() {
|
||||||
if fortran == "" {
|
if fortran == "" {
|
||||||
fortran, _ = exec.LookPath("gfortran")
|
fortran, _ = exec.LookPath("gfortran")
|
||||||
}
|
}
|
||||||
if fortran != "" {
|
if fortran != "" && t.goos != "dragonfly" { // see golang.org/issue/14544
|
||||||
t.tests = append(t.tests, distTest{
|
t.tests = append(t.tests, distTest{
|
||||||
name: "cgo_fortran",
|
name: "cgo_fortran",
|
||||||
heading: "../misc/cgo/fortran",
|
heading: "../misc/cgo/fortran",
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue