mirror of
https://github.com/qpdf/qpdf.git
synced 2024-11-11 07:30:57 +00:00
c67634afa0
Fix all tests where the only required fix is to run qpdf-test-compare instead of doing a simple file comparison.
31 lines
768 B
Perl
31 lines
768 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('filter-abbreviations');
|
|
|
|
my $n_tests = 2;
|
|
|
|
# Stream filter abbreviations from table H.1
|
|
$td->runtest("stream filter abbreviations",
|
|
{$td->COMMAND => "qpdf --static-id filter-abbreviation.pdf a.pdf"},
|
|
{$td->STRING => "",
|
|
$td->EXIT_STATUS => 0},
|
|
$td->NORMALIZE_NEWLINES);
|
|
$td->runtest("check output",
|
|
{$td->COMMAND => "qpdf-test-compare a.pdf filter-abbreviation.out"},
|
|
{$td->FILE => "filter-abbreviation.out", $td->EXIT_STATUS => 0});
|
|
|
|
cleanup();
|
|
$td->report($n_tests);
|