Skip to content

Commit

Permalink
archive/tar: also skip header roundtrip test on nacl
Browse files Browse the repository at this point in the history
Update golang#11426

Change-Id: I7abc4ed2241a7a3af6d57c934786f36de4f97b77
Reviewed-on: https://go-review.googlesource.com/11592
Run-TryBot: Brad Fitzpatrick <[email protected]>
Reviewed-by: Brad Fitzpatrick <[email protected]>
  • Loading branch information
bradfitz committed Jun 26, 2015
1 parent 603dc41 commit 2b3b7dc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/archive/tar/tar_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ type headerRoundTripTest struct {
}

func TestHeaderRoundTrip(t *testing.T) {
if runtime.GOOS == "windows" || runtime.GOOS == "plan9" {
if runtime.GOOS == "windows" || runtime.GOOS == "plan9" || runtime.GOOS == "nacl" {
t.Skipf("skipping on %s; issue 11426", runtime.GOOS)
}
golden := []headerRoundTripTest{
Expand Down

0 comments on commit 2b3b7dc

Please sign in to comment.