This is a live mirror of the Perl 5 development currently hosted at
https://github.com/perl/perl5
https://perl5.git.perl.org
/
perl5.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
bb6f449
)
Wrong skip() arguments.
author
Jarkko Hietaniemi
<jhi@iki.fi>
Thu, 18 Oct 2001 12:37:28 +0000
(12:37 +0000)
committer
Jarkko Hietaniemi
<jhi@iki.fi>
Thu, 18 Oct 2001 12:37:28 +0000
(12:37 +0000)
p4raw-id: //depot/perl@12492
ext/B/t/terse.t
patch
|
blob
|
blame
|
history
diff --git
a/ext/B/t/terse.t
b/ext/B/t/terse.t
index
336b7a7
..
281d65c
100644
(file)
--- a/
ext/B/t/terse.t
+++ b/
ext/B/t/terse.t
@@
-82,7
+82,8
@@
sub bar {
SKIP: {
use Config;
- skip("- printing RVs not working under threads") if $Config{usethreads};
+ skip("- printing RVs not working under threads", 1)
+ if $Config{usethreads};
# Schwern's example of finding an RV
my $path = join " ", map { qq["-I$_"] } @INC;
my $redir = $^O eq 'MacOS' ? '' : "2>&1";