aboutsummaryrefslogtreecommitdiffstats
path: root/examples/qtest/overlay-page.test
blob: 68e695d375af06d3a077851db04437151faf938d (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("overlay-page");

require TestDriver;

my $td = new TestDriver('overlay-page');

cleanup();

$td->runtest("overlay-page",
	     {$td->COMMAND => "pdf-overlay-page in.pdf stamp.pdf a.pdf"},
	     {$td->STRING => "", $td->EXIT_STATUS => 0});
$td->runtest("compare files",
	     {$td->FILE => "a.pdf"},
	     {$td->FILE => "out.pdf"});

cleanup();

$td->report(2);

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