diff options
| author | Brad Fitzpatrick <bradfitz@golang.org> | 2016-11-22 01:43:38 +0000 |
|---|---|---|
| committer | Brad Fitzpatrick <bradfitz@golang.org> | 2016-11-22 02:32:55 +0000 |
| commit | aeaa4c3c1da9e7a4afd4152913d6f2bfcf4fad2d (patch) | |
| tree | 6c6db67bbb40dc8b32b083c491c75dc311d2d87f /src/net/http/fs_test.go | |
| parent | 37d078ede386b5d0dff0bb1f3ea77e47122730d0 (diff) | |
| download | go-aeaa4c3c1da9e7a4afd4152913d6f2bfcf4fad2d.tar.xz | |
net/http: skip TestLinuxSendfile on mips64 for now
See issues for details. We can expand this test during the Go 1.9
cycle.
Updates #18008
Change-Id: I78b6b7e8dede414769be97898e29f969bc2a9651
Reviewed-on: https://go-review.googlesource.com/33430
Reviewed-by: Cherry Zhang <cherryyz@google.com>
Diffstat (limited to 'src/net/http/fs_test.go')
| -rw-r--r-- | src/net/http/fs_test.go | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/net/http/fs_test.go b/src/net/http/fs_test.go index 83f81e3efb..17a0e4a9af 100644 --- a/src/net/http/fs_test.go +++ b/src/net/http/fs_test.go @@ -1091,9 +1091,7 @@ func TestLinuxSendfile(t *testing.T) { // and will error out if we specify that with `-e trace='. syscalls = "sendfile" case "mips64": - // TODO: minimize this set once golang.org/issue/18008 - // is understood. - syscalls = "network,file" + t.Skip("TODO: update this test to be robust against various versions of strace on mips64. See golang.org/issue/33430") } var buf bytes.Buffer |
