aboutsummaryrefslogtreecommitdiffstats
path: root/examples/qtest/qpdfjob-c.test
diff options
context:
space:
mode:
Diffstat (limited to 'examples/qtest/qpdfjob-c.test')
-rw-r--r--examples/qtest/qpdfjob-c.test29
1 files changed, 29 insertions, 0 deletions
diff --git a/examples/qtest/qpdfjob-c.test b/examples/qtest/qpdfjob-c.test
new file mode 100644
index 00000000..33a55431
--- /dev/null
+++ b/examples/qtest/qpdfjob-c.test
@@ -0,0 +1,29 @@
+#!/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";
+}