aboutsummaryrefslogtreecommitdiffstats
path: root/qpdf/qtest/from-scratch.test
blob: 941205288a89e5e7d9c6435705da5ae55a7bb059 (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
#!/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('from-scratch');

my $n_tests = 2;

$td->runtest("basic qpdf from scratch",
             {$td->COMMAND => "pdf_from_scratch 0"},
             {$td->STRING => "test 0 done\n", $td->EXIT_STATUS => 0},
             $td->NORMALIZE_NEWLINES);
$td->runtest("check output",
             {$td->FILE => "a.pdf"},
             {$td->FILE => "from-scratch-0.pdf"});
cleanup();
$td->report($n_tests);