2
1
mirror of https://github.com/qpdf/qpdf.git synced 2024-09-24 11:09:07 +00:00
qpdf/examples/qtest/qpdfjob-c.test
2022-02-01 13:50:58 -05:00

30 lines
513 B
Perl

#!/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";
}