|
6 |
edited tags; edited title
|
||
|
5 | added 92 characters in body | ||
|
I have some Perl code that runs fine outside the debugger:
but when I run it inside the debugger:
it behaves differently. The files in question (there are several) are part of the test suite for a large Perl module (~20K lines of code). The tests do a lot of setup work at compile time and use BEGIN blocks. Here's some minimal reproduction code:
If you put that in
The upshot is that
(Internal newlines and spacing preserved. That's the literal text, even the "..."s.) I need code like this to run in the debugger. Using the debugger in the test suite is an important part of my workflow. The module uses exception objects and does a lot of stuff at compile time and expects an object thrown to be an object when caught. My question (finally) is this: How can I get this to work? Is there a workaround? Is this a bug in the perl debugger module? What's the best way to go about getting this resolved? (I know that's several questions, but they're all related.) I'm using perl 5.10.0 on Mac OS X 10.5.5. The dieLevel thing suggested by Adam Bellaire looked promising, and indeed something (can't find out what) is setting it to 1 for me. But I set it to 0 using a
I confirmed that the settings are in effect by running the Thanks, brian. I used |
||||
|
4 | deleted 13 characters in body | ||
|
I have some Perl code that runs fine outside the debugger:
but when I run it inside the debugger:
it behaves differently. The files in question (there are several) are part of the test suite for a large Perl module (~20K lines of code). The tests do a lot of setup work at compile time and use BEGIN blocks. Here's some minimal reproduction code:
If you put that in
The upshot is that
(Internal newlines and spacing preserved. That's the literal text, even the "..."s.) I need code like this to run in the debugger. Using the debugger in the test suite is an important part of my workflow. The module uses exception objects and does a lot of stuff at compile time and expects an object thrown to be an object when caught. My question (finally) is this: How can I get this to work? Is there a workaround? Is this a bug in the perl debugger module? What's the best way to go about getting this resolved? (I know that's several questions, but they're all related.) I'm using perl 5.10.0 on Mac OS X 10.5.5. The dieLevel thing suggested by Adam Bellaire looked promising, and indeed something (can't find out what) is setting it to 1 for me. But I set it to 0 using a
I confirmed that the settings are in effect by running the Thanks, brian. I used |
||||
|
3 | added 327 characters in body | ||
|
2 | added 699 characters in body | ||
|
1 |
|
||
