This is a live mirror of the Perl 5 development currently hosted at
https://github.com/perl/perl5
https://perl5.git.perl.org
/
perl5.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
dfc19b6
)
disable cwd_enoent test
author
Zefram
<zefram@fysh.org>
Mon, 25 Dec 2017 06:07:26 +0000
(06:07 +0000)
committer
Zefram
<zefram@fysh.org>
Mon, 25 Dec 2017 06:09:29 +0000
(06:09 +0000)
This test, running getcwd() when cwd is an unlinked directory, was
observed to cause an infinite memory-eating loop on FreeBSD. As a
temporary measure it must be disabled. [perl #132651]
dist/PathTools/t/cwd_enoent.t
patch
|
blob
|
blame
|
history
diff --git
a/dist/PathTools/t/cwd_enoent.t
b/dist/PathTools/t/cwd_enoent.t
index
59e3612
..
9980dfd
100644
(file)
--- a/
dist/PathTools/t/cwd_enoent.t
+++ b/
dist/PathTools/t/cwd_enoent.t
@@
-1,6
+1,8
@@
use warnings;
use strict;
+use Test::More skip_all => "infinite loop seen on FreeBSD [perl #132651]";
+
use Config;
use Errno qw(ENOENT);
use File::Temp qw(tempdir);