mirror of
https://github.com/qpdf/qpdf.git
synced 2024-11-11 23:45:47 +00:00
30 lines
513 B
Plaintext
30 lines
513 B
Plaintext
|
#!/usr/bin/env perl
|
||
|
require 5.008;
|
||
|
use warnings;
|
||
|
use strict;
|
||
|
|
||
|
chdir("qpdf-job") or die "chdir testdir failed: $!\n";
|
||
|
|
||
|
require TestDriver;
|
||
|
|
||
|
cleanup();
|
||
|
|
||
|
my $td = new TestDriver('qpdfjob-c');
|
||
|
|
||
|
$td->runtest("qpdfjob-c",
|
||
|
{$td->COMMAND => "qpdfjob-c in.pdf a.pdf"},
|
||
|
{$td->STRING => "", $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";
|
||
|
}
|