aboutsummaryrefslogtreecommitdiffstats
path: root/qpdf/qtest/final_version.test
diff options
context:
space:
mode:
Diffstat (limited to 'qpdf/qtest/final_version.test')
-rw-r--r--qpdf/qtest/final_version.test25
1 files changed, 25 insertions, 0 deletions
diff --git a/qpdf/qtest/final_version.test b/qpdf/qtest/final_version.test
new file mode 100644
index 00000000..1fe65feb
--- /dev/null
+++ b/qpdf/qtest/final_version.test
@@ -0,0 +1,25 @@
+#!/usr/bin/env perl
+require 5.008;
+use warnings;
+use strict;
+
+unshift(@INC, '.');
+require qpdf_test_helpers;
+
+chdir("qpdf") or die "chdir testdir failed: $!\n";
+
+require TestDriver;
+
+cleanup();
+
+my $td = new TestDriver('final_version');
+
+my $n_tests = 1;
+
+$td->runtest("check final version",
+ {$td->COMMAND => "test_driver 54 minimal.pdf"},
+ {$td->STRING => "test 54 done\n", $td->EXIT_STATUS => 0},
+ $td->NORMALIZE_NEWLINES);
+
+cleanup();
+$td->report($n_tests);