Skip to content

Commit

Permalink
Disable extended headers tar test
Browse files Browse the repository at this point in the history
Go 1.10 and 1.11 can't even parse the tar header anymore (errors with
"invalid header"). I'm not sure if this is a bug so I opened an issue
here: golang/go#28843

/cc @jbardin
  • Loading branch information
mitchellh committed Nov 17, 2018
1 parent 08c221b commit 9fd5bfc
Showing 1 changed file with 12 additions and 8 deletions.
20 changes: 12 additions & 8 deletions decompress_tar_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,14 +9,18 @@ import (
func TestTar(t *testing.T) {
mtime := time.Unix(0, 0)
cases := []TestDecompressCase{
{
"extended_header.tar",
true,
false,
[]string{"directory/", "directory/a", "directory/b"},
"",
nil,
},
/*
Disabled for now, this was broken in Go 1.10 and doesn't parse at
all anymore. Issue open here: https://github.com/golang/go/issues/28843
{
"extended_header.tar",
true,
false,
[]string{"directory/", "directory/a", "directory/b"},
"",
nil,
},
*/
{
"implied_dir.tar",
true,
Expand Down

0 comments on commit 9fd5bfc

Please sign in to comment.