mirror of
https://github.com/golang/go
synced 2024-11-23 04:50:06 -07:00
archive/tar: disable new failing test on windows and plan9
Update #11426 Change-Id: If406d2efcc81965825a63c76f5448d544ba2a740 Reviewed-on: https://go-review.googlesource.com/11590 Reviewed-by: Austin Clements <austin@google.com>
This commit is contained in:
parent
77132c810d
commit
48025d2ce0
@ -10,6 +10,7 @@ import (
|
||||
"os"
|
||||
"path"
|
||||
"reflect"
|
||||
"runtime"
|
||||
"strings"
|
||||
"testing"
|
||||
"time"
|
||||
@ -135,6 +136,9 @@ type headerRoundTripTest struct {
|
||||
}
|
||||
|
||||
func TestHeaderRoundTrip(t *testing.T) {
|
||||
if runtime.GOOS == "windows" || runtime.GOOS == "plan9" {
|
||||
t.Skipf("skipping on %s; issue 11426", runtime.GOOS)
|
||||
}
|
||||
golden := []headerRoundTripTest{
|
||||
// regular file.
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user