Do not load PadWalker at all on plain installs
Kent Fredric [Thu, 2 Apr 2015 11:54:19 +0000 (00:54 +1300)]
Avoids a SEGV on perls with unusual compilation options

.mailmap
AUTHORS
t/lib/DBICTest/Util/LeakTracer.pm

index ee01f0a..ffbbe5d 100644 (file)
--- a/.mailmap
+++ b/.mailmap
@@ -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>
diff --git a/AUTHORS b/AUTHORS
index e047e33..90f3033 100644 (file)
--- a/AUTHORS
+++ b/AUTHORS
@@ -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>
index 3da3b86..6f684e0 100644 (file)
@@ -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';