mirror of
https://github.com/qpdf/qpdf.git
synced 2024-11-11 07:30:57 +00:00
26 lines
507 B
Perl
26 lines
507 B
Perl
#!/usr/bin/env perl
|
|
require 5.008;
|
|
use warnings;
|
|
use strict;
|
|
|
|
unshift(@INC, '.');
|
|
require qpdf_test_helpers;
|
|
|
|
chdir("qpdf") or die "chdir testdir failed: $!\n";
|
|
|
|
require TestDriver;
|
|
|
|
cleanup();
|
|
|
|
my $td = new TestDriver('windows-shell-globbing');
|
|
|
|
my $n_tests = 1;
|
|
|
|
$td->runtest("shell wildcard expansion",
|
|
{$td->COMMAND => "test_shell_glob 'good*.pdf'"},
|
|
{$td->STRING => "PASSED\n", $td->EXIT_STATUS => 0},
|
|
$td->NORMALIZE_NEWLINES);
|
|
|
|
cleanup();
|
|
$td->report($n_tests);
|