diff options
author | Rafael Garcia-Suarez <rgarciasuarez@gmail.com> | 2009-06-22 13:30:26 +0200 |
---|---|---|
committer | Rafael Garcia-Suarez <rgarciasuarez@gmail.com> | 2009-06-22 13:30:26 +0200 |
commit | 53409900a7d39827c92521617aae4258229bce49 (patch) | |
tree | a896d18910d0e7acae285af52d4521f063977571 /lib/perl5db.t | |
parent | 9b76ae71c6fcdda7d153f2deb2f79e654d7d097b (diff) | |
download | perl-53409900a7d39827c92521617aae4258229bce49.tar.gz |
Fix test with non-threaded perls
Diffstat (limited to 'lib/perl5db.t')
-rw-r--r-- | lib/perl5db.t | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/perl5db.t b/lib/perl5db.t index 22781d4531..bb098a1d93 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'); } |