summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPaulo Custodio <pauloscustodio@gmail.com>2022-06-13 12:28:46 +0100
committerPaulo Custodio <pauloscustodio@gmail.com>2022-06-13 12:28:46 +0100
commit80d872afc82541de1fa8a70d9e5c9dc0bc7695ed (patch)
tree6161c6d0d96b4f1b713ccade5f3269b3f1b54d58
parentaee4be60243e4ede8396b2e026ba2a6887c110af (diff)
Symlinks are broken in Windows/msys
-rw-r--r--t/05_links.t2
1 files changed, 1 insertions, 1 deletions
diff --git a/t/05_links.t b/t/05_links.t
index 0ab8a0e..baeb41e 100644
--- a/t/05_links.t
+++ b/t/05_links.t
@@ -12,7 +12,7 @@ use Test::More;
use File::Spec::Functions ':ALL';
use File::Remove ();
-unless ( eval { symlink( "", "" ); 1 } )
+unless ( $^O ne 'msys' && eval { symlink( "", "" ); 1 } )
{
plan( "skip_all" => "No Unix-like symlinks" );
exit(0);