Skip to content

Commit 48528db

Browse files
authored
Merge pull request #400 from n1vux/dev
disable test with : on WIN
2 parents e627c18 + c8d95f2 commit 48528db

1 file changed

Lines changed: 9 additions & 1 deletion

File tree

t/naughty-filenames.t

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ use 5.010;
44
use strict;
55
use warnings;
66

7-
use Test::More tests => 1;
7+
use Test::More;
88

99
use File::Spec ();
1010
use File::Temp ();
@@ -14,6 +14,14 @@ use Util;
1414

1515
prep_environment();
1616

17+
if ( is_windows() ) {
18+
plan skip_all => 'Test fails on Windows.'; ## XXX TODO let the ones that dont fail run?
19+
exit;
20+
}
21+
else {
22+
plan tests => 1;
23+
}
24+
1725
# Global:
1826
# /tmp/x/etc/.ackrc
1927
# /tmp/x/swamp

0 commit comments

Comments
 (0)