Rename test output files (fixes #173)

Some file names had `...` in their name, which causes problems on some
systems.
This commit is contained in:
Jay Berkenbilt 2018-02-04 14:25:59 -05:00
parent 95ba7125ff
commit 9732de7ea4
5 changed files with 3 additions and 1 deletions

View File

@ -13,7 +13,9 @@ foreach my $show ("", " -show-open")
{
foreach my $style ("", " -lines", " -numbers")
{
my $out = "test.$show.$style.out";
my $xshow = $show ? $show : "x";
my $xstyle = $style ? $style : "x";
my $out = "test.$xshow.$xstyle.out";
$out =~ s/ //g;
$td->runtest("show:$show, style:$style",
{$td->COMMAND => "pdf-bookmarks $show $style 1.pdf"},