Fix test failures introduced by the change of flags on op_sort
[p5sagit/p5-mst-13.2.git] / ext / B / t / lint.t
CommitLineData
94011a57 1#!./perl -w
2
3BEGIN {
5638aaac 4 if ($ENV{PERL_CORE}){
5 chdir('t') if -d 't';
6 @INC = ('.', '../lib');
7 } else {
8 unshift @INC, 't';
9 push @INC, "../../t";
10 }
9cd8f857 11 require Config;
12 if (($Config::Config{'extensions'} !~ /\bB\b/) ){
13 print "1..0 # Skip -- Perl configured without B module\n";
14 exit 0;
15 }
5638aaac 16 require 'test.pl';
94011a57 17}
18
40f1df11 19plan tests => 15; # adjust also number of skipped tests !
94011a57 20
21# Runs a separate perl interpreter with the appropriate lint options
22# turned on
23sub runlint ($$$;$) {
24 my ($opts,$prog,$result,$testname) = @_;
25 my $res = runperl(
26 switches => [ "-MO=Lint,$opts" ],
27 prog => $prog,
28 stderr => 1,
29 );
30 $res =~ s/-e syntax OK\n$//;
31 is( $res, $result, $testname || $opts );
32}
33
34runlint 'context', '$foo = @bar', <<'RESULT';
35Implicit scalar context for array in scalar assignment at -e line 1
36RESULT
37
38runlint 'context', '$foo = length @bar', <<'RESULT';
39Implicit scalar context for array in length at -e line 1
40RESULT
41
42runlint 'implicit-read', '/foo/', <<'RESULT';
43Implicit match on $_ at -e line 1
44RESULT
45
46runlint 'implicit-write', 's/foo/bar/', <<'RESULT';
47Implicit substitution on $_ at -e line 1
48RESULT
49
50SKIP : {
51
52 use Config;
40f1df11 53 skip("Doesn't work with threaded perls",11)
f5ba1307 54 if $Config{useithreads} || ($] < 5.009 && $Config{use5005threads});
94011a57 55
56 runlint 'implicit-read', '1 for @ARGV', <<'RESULT', 'implicit-read in foreach';
57Implicit use of $_ in foreach at -e line 1
58RESULT
59
60 runlint 'dollar-underscore', '$_ = 1', <<'RESULT';
61Use of $_ at -e line 1
62RESULT
63
64 runlint 'dollar-underscore', 'print', <<'RESULT', 'dollar-underscore in print';
65Use of $_ at -e line 1
66RESULT
67
68 runlint 'private-names', 'sub A::_f{};A::_f()', <<'RESULT';
69Illegal reference to private name _f at -e line 1
70RESULT
71
72 runlint 'private-names', '$A::_x', <<'RESULT';
73Illegal reference to private name _x at -e line 1
74RESULT
75
bfecbe02 76 runlint 'private-names', 'sub A::_f{};A->_f()', <<'RESULT',
94011a57 77Illegal reference to private method name _f at -e line 1
78RESULT
bfecbe02 79 'private-names (method)';
94011a57 80
81 runlint 'undefined-subs', 'foo()', <<'RESULT';
82Undefined subroutine foo called at -e line 1
83RESULT
84
85 runlint 'regexp-variables', 'print $&', <<'RESULT';
86Use of regexp variable $& at -e line 1
87RESULT
88
0091380b 89 runlint 'regexp-variables', 's/./$&/', <<'RESULT';
94011a57 90Use of regexp variable $& at -e line 1
91RESULT
94011a57 92
40f1df11 93 runlint 'bare-subs', 'sub bare(){1};$x=bare', '';
94
95 runlint 'bare-subs', 'sub bare(){1}; $x=[bare=>0]; $x=$y{bare}', <<'RESULT';
96Bare sub name 'bare' interpreted as string at -e line 1
97Bare sub name 'bare' interpreted as string at -e line 1
98RESULT
99
94011a57 100}