Skip to content

Commit b876d59

Browse files
committed
exclude Devel-Examine-Subs
1 parent 2ddf5e8 commit b876d59

File tree

1 file changed

+8
-2
lines changed

1 file changed

+8
-2
lines changed

xt/dependent-modules.t

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,14 @@ my $old = \&Test::DependentModules::_error_log;
1111
my $new = sub { push @error_log, @_; $old->(@_); };
1212
{ no warnings 'redefine'; *Test::DependentModules::_error_log = $new; }
1313

14-
test_all_dependents #
15-
PPI => { exclude => qr/^(Apache2-SSI|Devel-IPerl|Padre)$/ };
14+
test_all_dependents PPI => {
15+
exclude => qr/^(
16+
# don't remember why i excluded these
17+
Apache2-SSI|Devel-IPerl|Padre
18+
# fails tests regarding directory write permissions, probably not PPI
19+
|Devel-Examine-Subs
20+
)$/x
21+
};
1622

1723
diag "\n\n---------- ERROR LOG START -----------\n\n",
1824
@error_log,

0 commit comments

Comments
 (0)