Re: [mp2] [BUG] Segfault with Test::More - duping STDOUT?

2011-12-07 Thread gAzZaLi
Hello, I'm unclear about your sample code, but if you did want to send the output of say open TEST, |/bin/cat to the browser, your Perl version should be configured with sfio. The information you've pasted shows that d_sfio=undef. If you did want to do something like /bin/cat notpasswd to

Re: [mp2] [BUG] Segfault with Test::More - duping STDOUT?

2011-12-07 Thread Torsten Förtsch
On Wednesday, 07 December 2011 02:37:19 gAzZaLi wrote: Another option is to 'use Test::More' explicitly: (Do note that I have managed to segfault this) use Apache::Test qw(:withtestmore); use Test::More; As of Apache::Test 1.35++ this is wrong. Sorry about the interface change. The point

Re: [mp2] [BUG] Segfault with Test::More - duping STDOUT?

2011-12-07 Thread Torsten Förtsch
On Tuesday, 06 December 2011 17:40:14 Merlyn Kline wrote: To REPRODUCE the problem, you need a Broken.pm module like this: package Broken; my $Testout; create(); sub create { # Insert {# at the start of this line and the segfault goes away open( $Testout, STDOUT ) or die Can't

[mp2] [BUG] Segfault with Test::More - duping STDOUT?

2011-12-06 Thread Merlyn Kline
(I have read the bug reporting guides but unfortunately cannot follow all the instructions because I am missing Apache::TestReportPerl and do not have the necessary permissions to install it, nor to rebuild perl with debugging turned on. Hopefully I have provided enough information.) I have