| Submitter | Ian Taylor |
|---|---|
| Date | April 20, 2012, 6:51 p.m. |
| Message ID | <mcrlilq8cdw.fsf@dhcp-172-18-216-180.mtv.corp.google.com> |
| Download | mbox | patch |
| Permalink | /patch/154104/ |
| State | New |
| Headers | show |
Comments
Patch
diff -r 0a34b0a7bcc1 libgo/go/net/http/fs_test.go --- a/libgo/go/net/http/fs_test.go Fri Apr 20 11:42:58 2012 -0700 +++ b/libgo/go/net/http/fs_test.go Fri Apr 20 11:44:53 2012 -0700 @@ -396,7 +396,7 @@ defer ln.Close() var buf bytes.Buffer - child := exec.Command("strace", "-f", os.Args[0], "-test.run=TestLinuxSendfileChild") + child := exec.Command("strace", "-f", "-e!sigaltstack", os.Args[0], "-test.run=TestLinuxSendfileChild") child.ExtraFiles = append(child.ExtraFiles, lnf) child.Env = append([]string{"GO_WANT_HELPER_PROCESS=1"}, os.Environ()...) child.Stdout = &buf