2010-08-05 21:51:19 +00:00
|
|
|
#!/usr/bin/env perl
|
|
|
|
require 5.008;
|
|
|
|
BEGIN { $^W = 1; }
|
|
|
|
use strict;
|
|
|
|
|
|
|
|
chdir("double-page-size") or die "chdir testdir failed: $!\n";
|
|
|
|
|
|
|
|
require TestDriver;
|
|
|
|
|
|
|
|
my $td = new TestDriver('double-page-size');
|
|
|
|
|
|
|
|
cleanup();
|
|
|
|
|
|
|
|
$td->runtest("double page size",
|
2022-02-08 14:18:08 +00:00
|
|
|
{$td->COMMAND => ['pdf-double-page-size', ' --static-id',
|
2013-11-30 03:08:25 +00:00
|
|
|
'in.pdf', 'a.pdf']},
|
2022-02-08 14:18:08 +00:00
|
|
|
{$td->STRING =>
|
|
|
|
"pdf-double-page-size: new file written to a.pdf\n",
|
|
|
|
$td->EXIT_STATUS => 0},
|
|
|
|
$td->NORMALIZE_NEWLINES);
|
2010-08-05 21:51:19 +00:00
|
|
|
|
|
|
|
$td->runtest("check output",
|
2022-02-08 14:18:08 +00:00
|
|
|
{$td->FILE => "a.pdf"},
|
|
|
|
{$td->FILE => "out.pdf"});
|
2010-08-05 21:51:19 +00:00
|
|
|
|
|
|
|
cleanup();
|
|
|
|
|
|
|
|
$td->report(2);
|
|
|
|
|
|
|
|
sub cleanup
|
|
|
|
{
|
|
|
|
unlink 'a.pdf';
|
|
|
|
}
|