mirror of
https://github.com/qpdf/qpdf.git
synced 2025-01-05 08:02:11 +00:00
173b944ef8
This makes it a lot easier to run parts of the test suite.
34 lines
694 B
Perl
34 lines
694 B
Perl
#!/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);
|