Skip Menu |

Preferred bug tracker

Please visit the preferred bug tracker to report your issue.

This queue is for tickets about the Test-Exception CPAN distribution.

Report information
The Basics
Id: 84555
Status: new
Priority: 0/
Queue: Test-Exception

People
Owner: Nobody in particular
Requestors: david [...] justatheory.com
Cc:
AdminCc:

Bug Information
Severity: (no value)
Broken in: (no value)
Fixed in: (no value)



Subject: $@ Not Properly Localized on Perls before 5.14.
Date: Wed, 10 Apr 2013 09:35:10 -0700
To: bug-Test-Exception [...] rt.cpan.org
From: "David E. Wheeler" <david [...] justatheory.com>
This test fails on 5.10 and 5.12: use Test::More tests => 1; use Test::Exception; throws_ok { local $@ = 'Yo dawg'; die 'WTF!' } qr/WTF/; Works fine on 5.14. I suspect there is a `local $@` missing somewhere. David