Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions Changes
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
Revision history for Test-Fixme

{{$NEXT}}
- Skip tests requiring symlinks on Windows, where for newer versions
of Strawberry Perl (at least) they are supported, but the environment
is not typically configured for them (gh#8, gh#9)

0.16 2016-05-06 07:26:50 -0400
- Add support for MSYS2
Expand Down
1 change: 1 addition & 0 deletions t/list_files.t
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,7 @@ qr{^You must specify a single directory, or reference to a list of directories},
SKIP: { # Check that non files do not get returned.
skip( "MSYS2 does not support symlinks", 4 ) if $^O eq 'msys';
skip( "cannot create symlink", 4 ) unless eval { symlink( "", "" ); 1 };
skip( "symlinks are not typically configured for Windows", 4 ) if $^O eq 'MSWin32';

my $dir = "t/dirs/types";
my $target = "normal.txt";
Expand Down
Loading