Skip to content

Commit 2876020

Browse files
committed
[release-branch.go1.5] cmd/go: disable TestNoteReading on dragonfly
It started failing on the dragonfly builder at an unrelated commit (one that changed the wording in a few comments in the compiler). Created #13364 to track this. Change-Id: I462880bed8ff565a9950e7e185de97d43999c5e2 Reviewed-on: https://go-review.googlesource.com/17143 Reviewed-by: Russ Cox <[email protected]> Reviewed-on: https://go-review.googlesource.com/17144
1 parent 2246923 commit 2876020

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

src/cmd/go/note_test.go

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,9 @@ func TestNoteReading2K(t *testing.T) {
2828
}
2929

3030
func testNoteReading(t *testing.T) {
31+
if runtime.GOOS == "dragonfly" {
32+
t.Skipf("TestNoteReading is broken on dragonfly - golang.org/issue/13364", runtime.GOOS)
33+
}
3134
tg := testgo(t)
3235
defer tg.cleanup()
3336
tg.tempFile("hello.go", `package main; func main() { print("hello, world\n") }`)

0 commit comments

Comments
 (0)