aboutsummaryrefslogtreecommitdiffstats
path: root/libtests/qtest
diff options
context:
space:
mode:
authorJay Berkenbilt <ejb@ql.org>2019-01-26 22:48:48 +0100
committerJay Berkenbilt <ejb@ql.org>2019-01-27 13:50:30 +0100
commit623f5b664ece02027b550bec085fc9c6486986ff (patch)
treedc71b2c63338fdd143f9d86521c9e11dd31b0754 /libtests/qtest
parent68ccd87c9e950572e859eb5147453be2a528b944 (diff)
downloadqpdf-623f5b664ece02027b550bec085fc9c6486986ff.tar.zst
Convert pages to form XObjects
Support conversion of pages to form XObjects and placement of form XObjects on pages.
Diffstat (limited to 'libtests/qtest')
-rw-r--r--libtests/qtest/matrix.test15
1 files changed, 15 insertions, 0 deletions
diff --git a/libtests/qtest/matrix.test b/libtests/qtest/matrix.test
new file mode 100644
index 00000000..90522f9c
--- /dev/null
+++ b/libtests/qtest/matrix.test
@@ -0,0 +1,15 @@
+#!/usr/bin/env perl
+require 5.008;
+use warnings;
+use strict;
+
+require TestDriver;
+
+my $td = new TestDriver('matrix');
+
+$td->runtest("matrix",
+ {$td->COMMAND => "matrix"},
+ {$td->STRING => "matrix tests done\n", $td->EXIT_STATUS => 0},
+ $td->NORMALIZE_NEWLINES);
+
+$td->report(1);