From: Kent Fredric Date: Thu, 2 Apr 2015 11:54:19 +0000 (+1300) Subject: Avoid a segv with unusual issues occurring in PadWalker X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=refs%2Fheads%2Fghpr%2Fapplied%2Fas_30b4a316;p=dbsrgits%2FDBIx-Class-Historic.git Avoid a segv with unusual issues occurring in PadWalker --- diff --git a/.mailmap b/.mailmap index ee01f0a..e43753f 100644 --- a/.mailmap +++ b/.mailmap @@ -33,6 +33,8 @@ Henry Van Styn Jason M. Mills Jonathan Chu Jose Luis Martinez +Kent Fredric +Kent Fredric # Seen in github-created merges Matt Phillips Norbert Csongrádi Peter Rabbitson diff --git a/AUTHORS b/AUTHORS index aa0fe63..a9aa295 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 Lasse Makholm diff --git a/t/lib/DBICTest/Util/LeakTracer.pm b/t/lib/DBICTest/Util/LeakTracer.pm index 3da3b86..6f684e0 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';