From: Kent Fredric Date: Thu, 2 Apr 2015 11:54:19 +0000 (+1300) Subject: Do not load PadWalker at all on plain installs X-Git-Tag: v0.082821~17 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=dbsrgits%2FDBIx-Class.git;a=commitdiff_plain;h=b78fd14605b8e2b479cf1615cfb8dda1a4e0b508 Do not load PadWalker at all on plain installs Avoids a SEGV on perls with unusual compilation options --- diff --git a/.mailmap b/.mailmap index ee01f0a..ffbbe5d 100644 --- a/.mailmap +++ b/.mailmap @@ -33,6 +33,7 @@ Henry Van Styn Jason M. Mills Jonathan Chu Jose Luis Martinez +Kent Fredric Matt Phillips Norbert Csongrádi Peter Rabbitson diff --git a/AUTHORS b/AUTHORS index fe261d1..88b0663 100644 --- a/AUTHORS +++ b/AUTHORS @@ -108,6 +108,7 @@ Jordan Metzmeier jshirley: J. Shirley kaare: Kaare Rasmussen kd: Kieren Diment +kentnl: Kent Fredric kkane: Kevin L. Kane konobi: Scott McWhirter lejeunerenard: Sean Zellmer diff --git a/t/lib/DBICTest/Util/LeakTracer.pm b/t/lib/DBICTest/Util/LeakTracer.pm index 1cf5cc4..e979da1 100644 --- a/t/lib/DBICTest/Util/LeakTracer.pm +++ b/t/lib/DBICTest/Util/LeakTracer.pm @@ -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';