From: Steve Peters Date: Wed, 22 Mar 2006 02:18:58 +0000 (+0000) Subject: Increase the length of content compressed as a kludge to get X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=44033ed42cc1ad96343150c1a8e7fccf587c2f1f;p=p5sagit%2Fp5-mst-13.2.git Increase the length of content compressed as a kludge to get around incompatibilities in OpenBSD's gzip. p4raw-id: //depot/perl@27565 --- diff --git a/ext/Compress/IO/Zlib/t/050interop-gzip.t b/ext/Compress/IO/Zlib/t/050interop-gzip.t index 3d79a5f..e380dbd 100644 --- a/ext/Compress/IO/Zlib/t/050interop-gzip.t +++ b/ext/Compress/IO/Zlib/t/050interop-gzip.t @@ -90,7 +90,11 @@ sub writeWithGzip my $file; my $file1; my $lex = new LexFile $file, $file1; - my $content = "hello world\n" ; + my $content = qq { +Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Ut tempus odio id + dolor. Camelus perlus. Larrius in lumen numen. Dolor en quiquum filia + est. Quintus cenum parat. +}; my $got; is writeWithGzip($file, $content), 1, "writeWithGzip ok";