Skip to content

Commit bafa027

Browse files
cixtorbradfitz
authored andcommitted
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 <[email protected]> TryBot-Result: Gobot Gobot <[email protected]> Reviewed-by: Brad Fitzpatrick <[email protected]>
1 parent 68e86e6 commit bafa027

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/cmd/dist/test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -445,7 +445,7 @@ func (t *tester) registerTests() {
445445
if fortran == "" {
446446
fortran, _ = exec.LookPath("gfortran")
447447
}
448-
if fortran != "" {
448+
if fortran != "" && t.goos != "dragonfly" { // see golang.org/issue/14544
449449
t.tests = append(t.tests, distTest{
450450
name: "cgo_fortran",
451451
heading: "../misc/cgo/fortran",

0 commit comments

Comments
 (0)