mirror of
https://github.com/qpdf/qpdf.git
synced 2024-11-15 09:14:03 +00:00
17 lines
300 B
Plaintext
17 lines
300 B
Plaintext
|
#!/usr/bin/env perl
|
||
|
require 5.008;
|
||
|
use warnings;
|
||
|
use strict;
|
||
|
|
||
|
require TestDriver;
|
||
|
|
||
|
my $td = new TestDriver('nntree');
|
||
|
|
||
|
$td->runtest("nntree",
|
||
|
{$td->COMMAND => "nntree"},
|
||
|
{$td->STRING => "all tests passed\n",
|
||
|
$td->EXIT_STATUS => 0},
|
||
|
$td->NORMALIZE_NEWLINES);
|
||
|
|
||
|
$td->report(1);
|