summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorDaniel Friesel <derf@finalrewind.org>2010-12-24 21:30:44 +0100
committerDaniel Friesel <derf@finalrewind.org>2010-12-24 21:30:44 +0100
commit779de2316baff0915faa3ffa6a5ff972360c5ae7 (patch)
tree4ccbf2a43117bae1864fa0dc258dfda604623445 /test
parentd39e0efc0fd20a575ce7a786cf7d97c6848c2fe8 (diff)
feh.t: Do not rely on shell globbing
Diffstat (limited to 'test')
-rw-r--r--test/feh.t3
1 files changed, 2 insertions, 1 deletions
diff --git a/test/feh.t b/test/feh.t
index e142e63..a3a5650 100644
--- a/test/feh.t
+++ b/test/feh.t
@@ -6,7 +6,8 @@ use Test::Command tests => 48;
my $fehrc = "/tmp/.fehrc-$$";
my $feh = "src/feh --rcfile $fehrc";
-my $images = 'test/ok/* test/fail/*';
+my $images = 'test/ok/gif test/ok/jpg test/ok/png test/ok/pnm '
+ . 'test/fail/gif test/fail/jpg test/fail/png test/fail/pnm';
my ($feh_name, $feh_version) = @ENV{'PACKAGE', 'VERSION'};