summaryrefslogtreecommitdiff
path: root/libgo/go/compress/lzw/writer_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'libgo/go/compress/lzw/writer_test.go')
-rw-r--r--libgo/go/compress/lzw/writer_test.go4
1 files changed, 0 insertions, 4 deletions
diff --git a/libgo/go/compress/lzw/writer_test.go b/libgo/go/compress/lzw/writer_test.go
index 154cdf8090e..d249a09b295 100644
--- a/libgo/go/compress/lzw/writer_test.go
+++ b/libgo/go/compress/lzw/writer_test.go
@@ -50,10 +50,6 @@ func testFile(t *testing.T, fn string, order Order, litWidth int) {
return
}
_, err1 := lzww.Write(b[:n])
- if err1 == os.EPIPE {
- // Fail, but do not report the error, as some other (presumably reportable) error broke the pipe.
- return
- }
if err1 != nil {
t.Errorf("%s (order=%d litWidth=%d): %v", fn, order, litWidth, err1)
return