net/http: Don't try to trace sendfile64 on alpha.
From Uros Bizjak. From-SVN: r201206
This commit is contained in:
parent
c9150e8bda
commit
017e07a118
1 changed files with 6 additions and 1 deletions
|
@ -696,8 +696,13 @@ func TestLinuxSendfile(t *testing.T) {
|
|||
}
|
||||
defer ln.Close()
|
||||
|
||||
trace := "trace=sendfile"
|
||||
if runtime.GOARCH != "alpha" {
|
||||
trace = trace + ",sendfile64"
|
||||
}
|
||||
|
||||
var buf bytes.Buffer
|
||||
child := exec.Command("strace", "-f", "-q", "-e", "trace=sendfile,sendfile64", os.Args[0], "-test.run=TestLinuxSendfileChild")
|
||||
child := exec.Command("strace", "-f", "-q", "-e", trace, 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
|
||||
|
|
Loading…
Add table
Reference in a new issue