blob: 1e6c1d3df7e2f8db4dcd9f07a46f3027e5e3700f (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
|
#!/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 lzw2.in tmp --no-early-code-change"},
{$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";
}
|