]> Cypherpunks repositories - gostls13.git/commitdiff
[release-branch.go1.5] cmd/go: disable TestNoteReading on dragonfly
authorRuss Cox <rsc@golang.org>
Mon, 23 Nov 2015 02:14:52 +0000 (21:14 -0500)
committerRuss Cox <rsc@golang.org>
Mon, 23 Nov 2015 03:10:30 +0000 (03:10 +0000)
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

src/cmd/go/note_test.go

index 39b79c5cfd8630e107f6daf7dd5174f8292fd623..31c83c72731f59eeb77fb4ada7cbc5d44c1e27ea 100644 (file)
@@ -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") }`)