mirror of
https://github.com/qpdf/qpdf.git
synced 2024-11-01 03:12:29 +00:00
478c05fcab
If NO_GET_ENVIRONMENT is #defined at compile time on Windows, do not call GetEnvironmentVariable. QUtil::get_env will always return false. This option is not available through configure. This was added to support a specific user's requirements to avoid calling GetEnvironmentVariable from the Windows API. Nothing in qpdf outside the test coverage system in qtest relies on QUtil::get_env.
34 lines
660 B
Perl
34 lines
660 B
Perl
#!/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",
|
|
{$td->COMMAND => ['pdf-double-page-size', ' --static-id',
|
|
'in.pdf', 'a.pdf']},
|
|
{$td->STRING =>
|
|
"pdf-double-page-size: new file written to a.pdf\n",
|
|
$td->EXIT_STATUS => 0},
|
|
$td->NORMALIZE_NEWLINES);
|
|
|
|
$td->runtest("check output",
|
|
{$td->FILE => "a.pdf"},
|
|
{$td->FILE => "out.pdf"});
|
|
|
|
cleanup();
|
|
|
|
$td->report(2);
|
|
|
|
sub cleanup
|
|
{
|
|
unlink 'a.pdf';
|
|
}
|