We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2246923 commit 2876020Copy full SHA for 2876020
src/cmd/go/note_test.go
@@ -28,6 +28,9 @@ func TestNoteReading2K(t *testing.T) {
28
}
29
30
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
+ }
34
tg := testgo(t)
35
defer tg.cleanup()
36
tg.tempFile("hello.go", `package main; func main() { print("hello, world\n") }`)
0 commit comments