From b8fd17d994cb050835e2fe80d8f309fea7d167f1 Mon Sep 17 00:00:00 2001 From: Kent Fredric Date: Fri, 3 Apr 2015 00:54:19 +1300 Subject: [PATCH] Avoid a segv with unusual issues occurring in PadWalker --- .mailmap | 2 ++ AUTHORS | 1 + t/lib/DBICTest/Util/LeakTracer.pm | 2 +- 3 files changed, 4 insertions(+), 1 deletion(-) diff --git a/.mailmap b/.mailmap index ee01f0a68..e43753f30 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 aa0fe6340..a9aa295e1 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 3da3b86e1..6f684e083 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';