aboutsummaryrefslogtreecommitdiffstats
path: root/examples/qtest/count-strings.test
blob: c56d1b62d3b6901871c9349fb93ba5d342eed7b2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#!/usr/bin/env perl
require 5.008;
BEGIN { $^W = 1; }
use strict;

chdir("count-strings");

require TestDriver;

my $td = new TestDriver('pdf-count-strings');

$td->runtest("filter tokens",
             {$td->COMMAND => "pdf-count-strings in.pdf"},
             {$td->FILE => "out", $td->EXIT_STATUS => 0},
             $td->NORMALIZE_NEWLINES);

$td->report(1);