mirror of
https://github.com/qpdf/qpdf.git
synced 2024-11-01 03:12:29 +00:00
bfb9341310
Some compilers output extra newlines in some cases.
19 lines
368 B
Perl
19 lines
368 B
Perl
#!/usr/bin/env perl
|
|
require 5.008;
|
|
BEGIN { $^W = 1; }
|
|
use strict;
|
|
|
|
chdir("qutil") or die "chdir testdir failed: $!\n";
|
|
|
|
require TestDriver;
|
|
|
|
my $td = new TestDriver('qutil');
|
|
|
|
$td->runtest("QUtil",
|
|
{$td->COMMAND => "qutil"},
|
|
{$td->FILE => "qutil.out",
|
|
$td->EXIT_STATUS => 0},
|
|
$td->NORMALIZE_NEWLINES | $td->RM_WS_ONLY_LINES);
|
|
|
|
$td->report(1);
|