Commit 9732de7ea4689f5dc7e4139cf580c457a3cf41d9
1 parent
95ba7125
Rename test output files (fixes #173)
Some file names had `...` in their name, which causes problems on some systems.
Showing
5 changed files
with
3 additions
and
1 deletions
examples/qtest/bookmarks.test
| ... | ... | @@ -13,7 +13,9 @@ foreach my $show ("", " -show-open") |
| 13 | 13 | { |
| 14 | 14 | foreach my $style ("", " -lines", " -numbers") |
| 15 | 15 | { |
| 16 | - my $out = "test.$show.$style.out"; | |
| 16 | + my $xshow = $show ? $show : "x"; | |
| 17 | + my $xstyle = $style ? $style : "x"; | |
| 18 | + my $out = "test.$xshow.$xstyle.out"; | |
| 17 | 19 | $out =~ s/ //g; |
| 18 | 20 | $td->runtest("show:$show, style:$style", |
| 19 | 21 | {$td->COMMAND => "pdf-bookmarks $show $style 1.pdf"}, | ... | ... |
examples/qtest/bookmarks/test.-show-open..out renamed to examples/qtest/bookmarks/test.-show-open.x.out
examples/qtest/bookmarks/test..-lines.out renamed to examples/qtest/bookmarks/test.x.-lines.out
examples/qtest/bookmarks/test..-numbers.out renamed to examples/qtest/bookmarks/test.x.-numbers.out
examples/qtest/bookmarks/test...out renamed to examples/qtest/bookmarks/test.x.x.out