diff options
author | Gurusamy Sarathy <gsar@cpan.org> | 2001-10-26 15:15:16 +0000 |
---|---|---|
committer | Gurusamy Sarathy <gsar@cpan.org> | 2001-10-26 15:15:16 +0000 |
commit | 63141bc47db9953e6097684fabf56f36dd452e86 (patch) | |
tree | eb567d94d1dbdc9d70ce977b37b48d103bc8bccb /ext/B/t/terse.t | |
parent | 57e04fb8193e86515c03190f068b95181c660909 (diff) | |
download | perl-63141bc47db9953e6097684fabf56f36dd452e86.tar.gz |
fix misleading comment on known inadequacy in B::Terse, and skip
it correctly
p4raw-id: //depot/perl@12694
Diffstat (limited to 'ext/B/t/terse.t')
-rw-r--r-- | ext/B/t/terse.t | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/B/t/terse.t b/ext/B/t/terse.t index 281d65c113..35f5eeef5e 100644 --- a/ext/B/t/terse.t +++ b/ext/B/t/terse.t @@ -82,8 +82,8 @@ sub bar { SKIP: { use Config; - skip("- printing RVs not working under threads", 1) - if $Config{usethreads}; + skip("- B::Terse won't grok RVs under ithreads yet", 1) + if $Config{useithreads}; # Schwern's example of finding an RV my $path = join " ", map { qq["-I$_"] } @INC; my $redir = $^O eq 'MacOS' ? '' : "2>&1"; |