qpdf/libtests/qtest/bits.test

19 lines
339 B
Perl

#!/usr/bin/env perl
require 5.008;
BEGIN { $^W = 1; }
use strict;
chdir("bits") or die "chdir testdir failed: $!\n";
require TestDriver;
my $td = new TestDriver('bits');
$td->runtest("bits",
{$td->COMMAND => "bits"},
{$td->FILE => "bits.out",
$td->EXIT_STATUS => 0},
$td->NORMALIZE_NEWLINES);
$td->report(1);