aboutsummaryrefslogtreecommitdiffstats
path: root/qpdf/qtest/progress_reporting.test
blob: cbef4c15107152df8726b45f350a94721b9bbd20 (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
#!/usr/bin/env perl
require 5.008;
use warnings;
use strict;

unshift(@INC, '.');
require qpdf_test_helpers;

chdir("qpdf") or die "chdir testdir failed: $!\n";

require TestDriver;

cleanup();

my $td = new TestDriver('progress_reporting');

my $n_tests = 1;

$td->runtest("progress report on small file",
             {$td->COMMAND => "qpdf --progress minimal.pdf a.pdf",
                  $td->FILTER => "perl filter-progress.pl"},
             {$td->FILE => "small-progress.out", $td->EXIT_STATUS => 0},
             $td->NORMALIZE_NEWLINES);

cleanup();
$td->report($n_tests);