mirror of
https://github.com/qpdf/qpdf.git
synced 2024-11-01 03:12:29 +00:00
34 lines
574 B
Plaintext
34 lines
574 B
Plaintext
|
#!/usr/bin/env perl
|
||
|
require 5.008;
|
||
|
use warnings;
|
||
|
use strict;
|
||
|
|
||
|
chdir("pdf-split-pages");
|
||
|
|
||
|
require TestDriver;
|
||
|
|
||
|
my $td = new TestDriver('pdf-split-pages');
|
||
|
|
||
|
cleanup();
|
||
|
|
||
|
$td->runtest("split",
|
||
|
{$td->COMMAND => "pdf-split-pages ' --static-id' in.pdf out"},
|
||
|
{$td->STRING => "", $td->EXIT_STATUS => 0});
|
||
|
|
||
|
$td->runtest("check page 1",
|
||
|
{$td->FILE => "out1.pdf"},
|
||
|
{$td->FILE => "exp1.pdf"});
|
||
|
|
||
|
$td->runtest("check page 2",
|
||
|
{$td->FILE => "out2.pdf"},
|
||
|
{$td->FILE => "exp2.pdf"});
|
||
|
|
||
|
cleanup();
|
||
|
|
||
|
$td->report(3);
|
||
|
|
||
|
sub cleanup
|
||
|
{
|
||
|
unlink (<out?.pdf>);
|
||
|
}
|