aboutsummaryrefslogtreecommitdiffstats
path: root/qpdf/qtest/outlines.test
blob: 0e368a9f154eb09037d4d297bfc0f48c4e21408e (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
#!/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('outlines');

my @outline_files = (
    'page-labels-and-outlines',
    'outlines-with-actions',
    'outlines-with-old-root-dests',
    'outlines-with-loop',
    );
my $n_tests = scalar(@outline_files);
foreach my $f (@outline_files)
{
    $td->runtest("outlines: $f",
                 {$td->COMMAND => "test_driver 49 $f.pdf"},
                 {$td->FILE => "$f.out", $td->EXIT_STATUS => 0},
                 $td->NORMALIZE_NEWLINES);
}

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