From: Rafael Garcia-Suarez Date: Mon, 22 Jun 2009 11:30:26 +0000 (+0200) Subject: Fix test with non-threaded perls X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=53409900a7d39827c92521617aae4258229bce49;p=p5sagit%2Fp5-mst-13.2.git Fix test with non-threaded perls --- diff --git a/lib/perl5db.t b/lib/perl5db.t index 22781d4..bb098a1 100644 --- a/lib/perl5db.t +++ b/lib/perl5db.t @@ -94,7 +94,7 @@ SKIP: { skip('This perl has threads, skipping non-threaded debugger tests'); } else { my $error = 'This Perl not built to support threads'; - my $output = runperl( switches => [ '-dt' ] ); + my $output = runperl( switches => [ '-dt' ], stderr => 1 ); like($output, qr/$error/, 'Perl debugger correctly complains that it was not built with threads'); }