mirror of
https://github.com/qpdf/qpdf.git
synced 2024-11-01 03:12:29 +00:00
21 lines
409 B
Perl
21 lines
409 B
Perl
#!/usr/bin/env perl
|
|
require 5.008;
|
|
BEGIN { $^W = 1; }
|
|
use strict;
|
|
|
|
chdir("filter-tokens");
|
|
|
|
require TestDriver;
|
|
|
|
my $td = new TestDriver('pdf-filter-tokens');
|
|
|
|
$td->runtest("filter tokens",
|
|
{$td->COMMAND => "pdf-filter-tokens in.pdf a.pdf"},
|
|
{$td->STRING => "", $td->EXIT_STATUS => 0});
|
|
|
|
$td->runtest("check output",
|
|
{$td->FILE => "a.pdf"},
|
|
{$td->FILE => "out.pdf"});
|
|
|
|
$td->report(2);
|