mirror of
https://github.com/qpdf/qpdf.git
synced 2024-11-02 11:46:35 +00:00
19 lines
368 B
Plaintext
19 lines
368 B
Plaintext
|
#!/usr/bin/env perl
|
||
|
require 5.008;
|
||
|
BEGIN { $^W = 1; }
|
||
|
use strict;
|
||
|
|
||
|
chdir("qintc") or die "chdir testdir failed: $!\n";
|
||
|
|
||
|
require TestDriver;
|
||
|
|
||
|
my $td = new TestDriver('qintc');
|
||
|
|
||
|
$td->runtest("QINTC",
|
||
|
{$td->COMMAND => "qintc"},
|
||
|
{$td->FILE => "qintc.out",
|
||
|
$td->EXIT_STATUS => 0},
|
||
|
$td->NORMALIZE_NEWLINES | $td->RM_WS_ONLY_LINES);
|
||
|
|
||
|
$td->report(1);
|