aboutsummaryrefslogtreecommitdiffstats
path: root/libtests/qtest
diff options
context:
space:
mode:
authorJay Berkenbilt <ejb@ql.org>2019-08-18 00:54:24 +0200
committerJay Berkenbilt <ejb@ql.org>2019-08-18 05:02:41 +0200
commite83f3308fbccd34959d325b830118eafe441fe48 (patch)
treeb3ac08e39da91a00b67e147bd05f5379789fcbe3 /libtests/qtest
parent04419d7c3269aa29ff669c8b5f3a7999edb44bea (diff)
downloadqpdf-e83f3308fbccd34959d325b830118eafe441fe48.tar.zst
SparseOHArray
Diffstat (limited to 'libtests/qtest')
-rw-r--r--libtests/qtest/sparse_array.test16
1 files changed, 16 insertions, 0 deletions
diff --git a/libtests/qtest/sparse_array.test b/libtests/qtest/sparse_array.test
new file mode 100644
index 00000000..c3535d85
--- /dev/null
+++ b/libtests/qtest/sparse_array.test
@@ -0,0 +1,16 @@
+#!/usr/bin/env perl
+require 5.008;
+use warnings;
+use strict;
+
+require TestDriver;
+
+my $td = new TestDriver('sparse array');
+
+$td->runtest("sparse_array",
+ {$td->COMMAND => "sparse_array"},
+ {$td->STRING => "sparse array tests done\n",
+ $td->EXIT_STATUS => 0},
+ $td->NORMALIZE_NEWLINES);
+
+$td->report(1);