2
1
mirror of https://github.com/qpdf/qpdf.git synced 2024-09-22 18:19:08 +00:00
qpdf/libtests/qtest/qutil.test
Thorsten Schöning bfb9341310 Use RM_WS_ONLY_LINES in test
Some compilers output extra newlines in some cases.
2016-01-24 12:05:22 -05:00

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);