aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRuss Cox <rsc@golang.org>2015-11-22 21:14:52 -0500
committerRuss Cox <rsc@golang.org>2015-11-23 03:10:30 +0000
commit2876020ee7dc9bb927a8968c2cfd6017b85834a2 (patch)
treec23a95a0f19de1a7b8fa08bf246f32a355722edc
parent22469232670870cfd96fd257f3b99f6b649b0b4f (diff)
downloadgo-2876020ee7dc9bb927a8968c2cfd6017b85834a2.tar.gz
go-2876020ee7dc9bb927a8968c2cfd6017b85834a2.zip
[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 <rsc@golang.org> Reviewed-on: https://go-review.googlesource.com/17144
-rw-r--r--src/cmd/go/note_test.go3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/cmd/go/note_test.go b/src/cmd/go/note_test.go
index 39b79c5cfd..31c83c7273 100644
--- a/src/cmd/go/note_test.go
+++ b/src/cmd/go/note_test.go
@@ -28,6 +28,9 @@ func TestNoteReading2K(t *testing.T) {
}
func testNoteReading(t *testing.T) {
+ if runtime.GOOS == "dragonfly" {
+ t.Skipf("TestNoteReading is broken on dragonfly - golang.org/issue/13364", runtime.GOOS)
+ }
tg := testgo(t)
defer tg.cleanup()
tg.tempFile("hello.go", `package main; func main() { print("hello, world\n") }`)