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:
b8f04b1
)
[patch] ext/b/t/lint.t fails on win32
author
Yves Orton
<demerphq@gmail.com>
Fri, 23 Dec 2005 20:06:52 +0000
(21:06 +0100)
committer
Steve Peters
<steve@fisharerojo.org>
Tue, 27 Dec 2005 14:10:20 +0000
(14:10 +0000)
Message-ID: <9b18b3110512231106k7ad395bfp8a0c05cd0f87fc61@mail.gmail.com>
p4raw-id: //depot/perl@26501
ext/B/t/lint.t
patch
|
blob
|
blame
|
history
diff --git
a/ext/B/t/lint.t
b/ext/B/t/lint.t
index
621649e
..
d5ee215
100644
(file)
--- a/
ext/B/t/lint.t
+++ b/
ext/B/t/lint.t
@@
-50,7
+50,7
@@
RESULT
{
my $res = runperl(
switches => [ "-MB::Lint" ],
- prog =>
"BEGIN{B::Lint->register_plugin(X=>[q[x]])};use O(qw[Lint x]);sub X::match{warn q[X ok.\n]};dummy()"
,
+ prog =>
'BEGIN{B::Lint->register_plugin(X=>[q[x]])};use O(qw[Lint x]);sub X::match{warn qq[X ok.\n]};dummy()'
,
stderr => 1,
);
like( $res, qr/X ok\./, 'Lint plugin' );