aboutsummaryrefslogtreecommitdiffstats
path: root/qpdf/qtest/precheck-streams.test
blob: c0353b501b344b9bfa29649a61baa4eae485a60c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
#!/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('precheck-streams');

my $n_tests = 2;

$td->runtest("bad stream",
             {$td->COMMAND => "qpdf --static-id bad-data.pdf a.pdf"},
             {$td->FILE => "bad-data.out", $td->EXIT_STATUS => 3},
             $td->NORMALIZE_NEWLINES);
$td->runtest("check output",
             {$td->FILE => "a.pdf"},
             {$td->FILE => "bad-data-out.pdf"});

cleanup();
$td->report($n_tests);