mirror of
https://github.com/qpdf/qpdf.git
synced 2024-11-01 03:12:29 +00:00
9a0b88bf77
git-svn-id: svn+q:///qpdf/trunk@599 71b93d88-0707-0410-a8cf-f5a4172ac649
27 lines
671 B
Perl
27 lines
671 B
Perl
#!/usr/bin/env perl
|
|
require 5.008;
|
|
BEGIN { $^W = 1; }
|
|
use strict;
|
|
|
|
require TestDriver;
|
|
|
|
my $td = new TestDriver('zlib-flate');
|
|
|
|
$td->runtest("compress",
|
|
{$td->COMMAND => "zlib-flate -compress < 1.uncompressed"},
|
|
{$td->FILE => "1.compressed",
|
|
$td->EXIT_STATUS => 0});
|
|
|
|
$td->runtest("uncompress",
|
|
{$td->COMMAND => "zlib-flate -uncompress < 1.compressed"},
|
|
{$td->FILE => "1.uncompressed",
|
|
$td->EXIT_STATUS => 0});
|
|
|
|
$td->runtest("error",
|
|
{$td->COMMAND => "zlib-flate -uncompress < 1.uncompressed"},
|
|
{$td->REGEXP => "flate: inflate: data: .*\n",
|
|
$td->EXIT_STATUS => 2},
|
|
$td->NORMALIZE_NEWLINES);
|
|
|
|
$td->report(3);
|