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