File: linearize.test

package info (click to toggle)
qpdf 2.3.1-4
  • links: PTS
  • area: main
  • in suites: wheezy
  • size: 12,084 kB
  • sloc: cpp: 18,192; sh: 9,543; perl: 4,578; xml: 2,727; ansic: 712; makefile: 92
file content (32 lines) | stat: -rw-r--r-- 595 bytes parent folder | download | duplicates (5)
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
29
30
31
32
#!/usr/bin/env perl
require 5.008;
BEGIN { $^W = 1; }
use strict;

chdir("linearize") or die "chdir testdir failed: $!\n";

require TestDriver;

cleanup();

my $td = new TestDriver('linearize');

my $qpdf = $ENV{'QPDF_BIN'} or die;

$td->runtest("linearize",
	     {$td->COMMAND => "pdf-linearize input.pdf '' a.pdf"},
	     {$td->STRING => "", $td->EXIT_STATUS => 0});

$td->runtest("check",
	     {$td->COMMAND => "$qpdf --check a.pdf"},
	     {$td->FILE => "check.out", $td->EXIT_STATUS => 0},
	     $td->NORMALIZE_NEWLINES);

cleanup();

$td->report(2);

sub cleanup
{
    unlink "a.pdf";
}