aboutsummaryrefslogtreecommitdiffstats
path: root/examples/qtest/qpdfjob-remove-annotations.test
blob: 32abf3efe476d474b6c0f9a31b920debedc51150 (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
#!/usr/bin/env perl
require 5.008;
use warnings;
use strict;

chdir("qpdfjob-remove-annotations");

require TestDriver;

my $td = new TestDriver('qpdfjob-remove-annotations');

cleanup();

$td->runtest("remove-annotations",
             {$td->COMMAND => "qpdfjob-remove-annotations --static-id annotations.pdf out.pdf"},
             {$td->STRING => "", $td->EXIT_STATUS => 0});
$td->runtest("compare files",
             {$td->FILE => "out.pdf"},
             {$td->FILE => "annotations-out.pdf"});

cleanup();

$td->report(2);

sub cleanup
{
    unlink("out.pdf");
}