mirror of
https://github.com/qpdf/qpdf.git
synced 2024-11-05 04:47:53 +00:00
9a0b88bf77
git-svn-id: svn+q:///qpdf/trunk@599 71b93d88-0707-0410-a8cf-f5a4172ac649
18 lines
321 B
Perl
18 lines
321 B
Perl
#!/usr/bin/env perl
|
|
require 5.008;
|
|
BEGIN { $^W = 1; }
|
|
use strict;
|
|
|
|
chdir("ph") or die "chdir testdir failed: $!\n";
|
|
|
|
require TestDriver;
|
|
|
|
my $td = new TestDriver('ph');
|
|
|
|
$td->runtest("PointerHolder",
|
|
{$td->COMMAND => "pointer_holder"},
|
|
{$td->FILE => "ph.out",
|
|
$td->EXIT_STATUS => 0});
|
|
|
|
$td->report(1);
|