lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

at 22.05-pre 15 lines 547 B view raw
1diff --git a/src/os/exec/exec_test.go b/src/os/exec/exec_test.go 2index dce66c5c2e..2532224376 100644 3--- a/src/os/exec/exec_test.go 4+++ b/src/os/exec/exec_test.go 5@@ -627,6 +627,10 @@ func TestExtraFiles(t *testing.T) { 6 t.Skipf("skipping test on %q", runtime.GOOS) 7 } 8 9+ if runtime.GOOS == "linux" && runtime.GOARCH == "arm" { 10+ t.Skipf("skipping test on %q %q", runtime.GOARCH, runtime.GOOS) 11+ } 12+ 13 // Force network usage, to verify the epoll (or whatever) fd 14 // doesn't leak to the child, 15 ln, err := net.Listen("tcp", "127.0.0.1:0")