aboutsummaryrefslogtreecommitdiffstats
path: root/qpdf/qtest/compare-pdfs.test
blob: 3265ce4a4210c56d206fc13f774cf5ef1e3f619b (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
#!/usr/bin/env perl
require 5.008;
use warnings;
use strict;
use Digest::MD5;
use File::Copy;

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

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

require TestDriver;

cleanup();

my $td = new TestDriver('compare-pdfs');

my $n_compare_pdfs = 5;

# Check compare_pdfs to make sure that it works properly.  Each call
# to compare_pdfs is worth three test cases.
compare_pdfs($td, "p1-a-p2-b.pdf", "p1-a-p2-b.pdf");
compare_pdfs($td, "p1-a.pdf", "p1-a.pdf");
compare_pdfs($td, "p1-a.pdf", "p1-b.pdf", 1);
compare_pdfs($td, "p1-a.pdf", "p1-a-p2-b.pdf", 1);
compare_pdfs($td, "p1-a-p2-a.pdf", "p1-a-p2-b.pdf", 1);
flush_tiff_cache();

cleanup();
$td->report(calc_ntests(0, $n_compare_pdfs));