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 Aug 12, 2015
1 parent dabde0b commit cc6cd52
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 <[email protected]> <[email protected]>
Jason M. Mills <[email protected]> <[email protected]>
Jonathan Chu <[email protected]> <[email protected]>
Jose Luis Martinez <[email protected]> <[email protected]>
Kent Fredric <[email protected]> <[email protected]>
Matt Phillips <[email protected]> <[email protected]>
Norbert Csongrádi <[email protected]> <[email protected]>
Peter Rabbitson <[email protected]> <[email protected]>
Expand Down
1 change: 1 addition & 0 deletions AUTHORS
Original file line number Diff line number Diff line change
Expand Up @@ -108,6 +108,7 @@ Jordan Metzmeier <[email protected]>
jshirley: J. Shirley <[email protected]>
kaare: Kaare Rasmussen
kd: Kieren Diment <[email protected]>
kentnl: Kent Fredric <[email protected]>
kkane: Kevin L. Kane <[email protected]>
konobi: Scott McWhirter <[email protected]>
lejeunerenard: Sean Zellmer <[email protected]>
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 cc6cd52

Please sign in to comment.