aboutsummaryrefslogtreecommitdiffstats
path: root/zlib-flate/qtest/zf.test
blob: 2b188eb2d10ba275b55de2ee2a0412339b9f2e22 (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
#!/usr/bin/env perl
require 5.008;
BEGIN { $^W = 1; }
use strict;

require TestDriver;

my $td = new TestDriver('zlib-flate');

foreach my $level ('', '=1', '=9')
{
    my $f = $level;
    $f =~ s/=/-/;
    $td->runtest("compress",
                 {$td->COMMAND =>
                      "zlib-flate -compress$level < 1.uncompressed"},
                 {$td->FILE => "1.compressed$f",
                      $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(7);