Skip to content

Commit

Permalink
Do not load PadWalker at all on plain installs
Browse files Browse the repository at this point in the history
Avoids a SEGV on perls with unusual compilation options
  • Loading branch information
kentfredric authored and ribasushi committed Apr 3, 2015
1 parent cea3012 commit 30b4a31
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 1 deletion.
1 change: 1 addition & 0 deletions .mailmap
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ Henry Van Styn <vanstyn@cpan.org> <vanstyn@intellitree.com>
Jason M. Mills <jmmills@cpan.org> <jmmills@cpan.org>
Jonathan Chu <milki@rescomp.berkeley.edu> <milki@rescomp.berkeley.edu>
Jose Luis Martinez <jlmartinez@capside.com> <jlmartinez@capside.com>
Kent Fredric <kentnl@cpan.org> <kentfredric@gmail.com>
Matt Phillips <mattp@cpan.org> <mphillips@oanda.com>
Norbert Csongrádi <bert@cpan.org> <bert@cpan.org>
Peter Rabbitson <ribasushi@cpan.org> <rabbit@viator.rabbit.us>
Expand Down
1 change: 1 addition & 0 deletions AUTHORS
Original file line number Diff line number Diff line change
Expand Up @@ -109,6 +109,7 @@ Jordan Metzmeier <jmetzmeier@magazines.com>
jshirley: J. Shirley <jshirley@gmail.com>
kaare: Kaare Rasmussen
kd: Kieren Diment <diment@gmail.com>
kentnl: Kent Fredric <kentnl@cpan.org>
kkane: Kevin L. Kane <kevin.kane@gmail.com>
konobi: Scott McWhirter <konobi@cpan.org>
Lasse Makholm <lasse@unity3d.com>
Expand Down
2 changes: 1 addition & 1 deletion t/lib/DBICTest/Util/LeakTracer.pm
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ use DBIx::Class::Optional::Dependencies;
use Data::Dumper::Concise;
use DBICTest::Util qw( stacktrace visit_namespaces );
use constant {
CV_TRACING => DBIx::Class::Optional::Dependencies->req_ok_for ('test_leaks_heavy'),
CV_TRACING => !DBICTest::RunMode->is_plain && DBIx::Class::Optional::Dependencies->req_ok_for ('test_leaks_heavy'),
};

use base 'Exporter';
Expand Down

0 comments on commit 30b4a31

Please sign in to comment.