mirror of
https://github.com/qpdf/qpdf.git
synced 2024-11-05 04:47:53 +00:00
da7166bead
git-svn-id: svn+q:///qpdf/trunk@646 71b93d88-0707-0410-a8cf-f5a4172ac649
40 lines
753 B
Perl
40 lines
753 B
Perl
#!/usr/bin/env perl
|
|
require 5.008;
|
|
BEGIN { $^W = 1; }
|
|
use strict;
|
|
|
|
chdir("lzw") or die "chdir testdir failed: $!\n";
|
|
|
|
require TestDriver;
|
|
|
|
my $td = new TestDriver('lzw');
|
|
|
|
cleanup();
|
|
|
|
$td->runtest("decode: early code change",
|
|
{$td->COMMAND => "lzw < lzw1.in > tmp"},
|
|
{$td->STRING => "",
|
|
$td->EXIT_STATUS => 0});
|
|
|
|
$td->runtest("check output",
|
|
{$td->FILE => "tmp"},
|
|
{$td->FILE => "lzw1.out"});
|
|
|
|
$td->runtest("decode: no early code change",
|
|
{$td->COMMAND => "lzw --no-early-code-change < lzw2.in > tmp"},
|
|
{$td->STRING => "",
|
|
$td->EXIT_STATUS => 0});
|
|
|
|
$td->runtest("check output",
|
|
{$td->FILE => "tmp"},
|
|
{$td->FILE => "lzw2.out"});
|
|
|
|
cleanup();
|
|
|
|
$td->report(4);
|
|
|
|
sub cleanup
|
|
{
|
|
unlink "tmp";
|
|
}
|