This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
New shinier lint.t (and Lint.pm) from Rafael Garcia-Suarez.
[perl5.git] / ext / B / t / lint.t
CommitLineData
94011a57
JH
1#!./perl -w
2
3BEGIN {
4 chdir 't' if -d 't';
5 @INC = qw(../lib);
6 require './test.pl';
7}
8
9plan tests => 13;
10
11# Runs a separate perl interpreter with the appropriate lint options
12# turned on
13sub runlint ($$$;$) {
14 my ($opts,$prog,$result,$testname) = @_;
15 my $res = runperl(
16 switches => [ "-MO=Lint,$opts" ],
17 prog => $prog,
18 stderr => 1,
19 );
20 $res =~ s/-e syntax OK\n$//;
21 is( $res, $result, $testname || $opts );
22}
23
24runlint 'context', '$foo = @bar', <<'RESULT';
25Implicit scalar context for array in scalar assignment at -e line 1
26RESULT
27
28runlint 'context', '$foo = length @bar', <<'RESULT';
29Implicit scalar context for array in length at -e line 1
30RESULT
31
32runlint 'implicit-read', '/foo/', <<'RESULT';
33Implicit match on $_ at -e line 1
34RESULT
35
36runlint 'implicit-write', 's/foo/bar/', <<'RESULT';
37Implicit substitution on $_ at -e line 1
38RESULT
39
40SKIP : {
41
42 use Config;
43 skip("Doesn't work with threaded perls",9) if $Config{useithreads};
44
45 runlint 'implicit-read', '1 for @ARGV', <<'RESULT', 'implicit-read in foreach';
46Implicit use of $_ in foreach at -e line 1
47RESULT
48
49 runlint 'dollar-underscore', '$_ = 1', <<'RESULT';
50Use of $_ at -e line 1
51RESULT
52
53 runlint 'dollar-underscore', 'print', <<'RESULT', 'dollar-underscore in print';
54Use of $_ at -e line 1
55RESULT
56
57 runlint 'private-names', 'sub A::_f{};A::_f()', <<'RESULT';
58Illegal reference to private name _f at -e line 1
59RESULT
60
61 runlint 'private-names', '$A::_x', <<'RESULT';
62Illegal reference to private name _x at -e line 1
63RESULT
64
65 {
66 local $TODO = q/doesn't catch methods/;
67 runlint 'private-names', 'sub A::_f{};A->_f()', <<'RESULT',
68Illegal reference to private method name _f at -e line 1
69RESULT
70 'private-names';
71 }
72
73 runlint 'undefined-subs', 'foo()', <<'RESULT';
74Undefined subroutine foo called at -e line 1
75RESULT
76
77 runlint 'regexp-variables', 'print $&', <<'RESULT';
78Use of regexp variable $& at -e line 1
79RESULT
80
81 {
82 local $TODO = 'bug';
83 runlint 'regexp-variables', 's/./$&/', <<'RESULT';
84Use of regexp variable $& at -e line 1
85RESULT
86 }
87
88}