From: Rafael Garcia-Suarez Date: Mon, 22 Jun 2009 10:00:28 +0000 (+0200) Subject: Fix skipping tests with threads in last commit X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=9b76ae71c6fcdda7d153f2deb2f79e654d7d097b;p=p5sagit%2Fp5-mst-13.2.git Fix skipping tests with threads in last commit --- diff --git a/lib/perl5db.t b/lib/perl5db.t index d5747cf..22781d4 100644 --- a/lib/perl5db.t +++ b/lib/perl5db.t @@ -89,7 +89,7 @@ like($contents, qr/sub factorial/, like($output, qr/Undefined symbols 0/, 'there are no undefined values in the symbol table'); } -{ +SKIP: { if ( $Config{usethreads} ) { skip('This perl has threads, skipping non-threaded debugger tests'); } else { @@ -99,7 +99,7 @@ like($contents, qr/sub factorial/, } } -{ +SKIP: { if ( $Config{usethreads} ) { local $ENV{PERLDB_OPTS} = "ReadLine=0 NonStop=1"; my $output = runperl(switches => [ '-dt' ], progfile => '../lib/perl5db/t/symbol-table-bug');