forked from mirrors/tar-split
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> Signed-off-by: Vincent Batts <vbatts@hashbangbash.com>
This commit is contained in:
parent
b48c28014e
commit
8eee43d0df
1 changed files with 4 additions and 0 deletions
|
@ -10,6 +10,7 @@ import (
|
||||||
"os"
|
"os"
|
||||||
"path"
|
"path"
|
||||||
"reflect"
|
"reflect"
|
||||||
|
"runtime"
|
||||||
"strings"
|
"strings"
|
||||||
"testing"
|
"testing"
|
||||||
"time"
|
"time"
|
||||||
|
@ -135,6 +136,9 @@ type headerRoundTripTest struct {
|
||||||
}
|
}
|
||||||
|
|
||||||
func TestHeaderRoundTrip(t *testing.T) {
|
func TestHeaderRoundTrip(t *testing.T) {
|
||||||
|
if runtime.GOOS == "windows" || runtime.GOOS == "plan9" {
|
||||||
|
t.Skipf("skipping on %s; issue 11426", runtime.GOOS)
|
||||||
|
}
|
||||||
golden := []headerRoundTripTest{
|
golden := []headerRoundTripTest{
|
||||||
// regular file.
|
// regular file.
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in a new issue