$_[0] = "not ok 1\n";
$result = do foo1("ok 1\n");
print "#2\t:$result: eq :value:\n";
-if ($result EQ 'value') { print "ok 2\n"; } else { print "not ok 2\n"; }
-if ($_[0] EQ "not ok 1\n") { print "ok 3\n"; } else { print "not ok 3\n"; }
+if ($result eq 'value') { print "ok 2\n"; } else { print "not ok 2\n"; }
+if ($_[0] eq "not ok 1\n") { print "ok 3\n"; } else { print "not ok 3\n"; }
$_[0] = "not ok 4\n";
$result = do foo2("not ok 4\n","ok 4\n","not ok 4\n");
print "#5\t:$result: eq :value:\n";
-if ($result EQ 'value') { print "ok 5\n"; } else { print "not ok 5\n"; }
-if ($_[0] EQ "not ok 4\n") { print "ok 6\n"; } else { print "not ok 6\n"; }
+if ($result eq 'value') { print "ok 5\n"; } else { print "not ok 5\n"; }
+if ($_[0] eq "not ok 4\n") { print "ok 6\n"; } else { print "not ok 6\n"; }
$result = do{print "ok 7\n"; 'value';};
print "#8\t:$result: eq :value:\n";
-if ($result EQ 'value') { print "ok 8\n"; } else { print "not ok 8\n"; }
+if ($result eq 'value') { print "ok 8\n"; } else { print "not ok 8\n"; }
sub blather {
print @_;
########
# Check compile time scope of pragma
-use warnings 'deprecated' ;
+use warnings 'syntax' ;
{
no warnings ;
- 1 if $a EQ $b ;
+ my $a =+ 1 ;
}
-1 if $a EQ $b ;
+my $a =+ 1 ;
EXPECT
-Use of EQ is deprecated at - line 8.
+Reversed += operator at - line 8.
########
# Check compile time scope of pragma
no warnings;
{
- use warnings 'deprecated' ;
- 1 if $a EQ $b ;
+ use warnings 'syntax' ;
+ my $a =+ 1 ;
}
-1 if $a EQ $b ;
+my $a =+ 1 ;
EXPECT
-Use of EQ is deprecated at - line 6.
+Reversed += operator at - line 6.
########
# Check runtime scope of pragma
Use of uninitialized value in scalar chop at - line 6.
########
-use warnings 'deprecated' ;
-1 if $a EQ $b ;
+use warnings 'syntax' ;
+my $a =+ 1 ;
EXPECT
-Use of EQ is deprecated at - line 3.
+Reversed += operator at - line 3.
########
--FILE-- abc
-1 if $a EQ $b ;
+my $a =+ 1 ;
1;
--FILE--
-use warnings 'deprecated' ;
+use warnings 'syntax' ;
require "./abc";
EXPECT
########
--FILE-- abc
-use warnings 'deprecated' ;
+use warnings 'syntax' ;
1;
--FILE--
require "./abc";
-1 if $a EQ $b ;
+my $a =+ 1 ;
EXPECT
########
--FILE-- abc
-use warnings 'deprecated' ;
-1 if $a EQ $b ;
+use warnings 'syntax' ;
+my $a =+ 1 ;
1;
--FILE--
use warnings 'uninitialized' ;
require "./abc";
my $a ; chop $a ;
EXPECT
-Use of EQ is deprecated at ./abc line 2.
+Reversed += operator at ./abc line 2.
Use of uninitialized value in scalar chop at - line 3.
########
--FILE-- abc.pm
-use warnings 'deprecated' ;
-1 if $a EQ $b ;
+use warnings 'syntax' ;
+my $a =+ 1 ;
1;
--FILE--
use warnings 'uninitialized' ;
use abc;
my $a ; chop $a ;
EXPECT
-Use of EQ is deprecated at abc.pm line 2.
+Reversed += operator at abc.pm line 2.
Use of uninitialized value in scalar chop at - line 3.
########
{
no warnings ;
eval {
- 1 if $a EQ $b ;
+ my $a =+ 1 ;
}; print STDERR $@ ;
- 1 if $a EQ $b ;
+ my $a =+ 1 ;
}
EXPECT
{
no warnings ;
eval {
- use warnings 'deprecated' ;
- 1 if $a EQ $b ;
+ use warnings 'syntax' ;
+ my $a =+ 1 ;
}; print STDERR $@ ;
- 1 if $a EQ $b ;
+ my $a =+ 1 ;
}
EXPECT
-Use of EQ is deprecated at - line 8.
+Reversed += operator at - line 8.
########
# Check scope of pragma with eval
no warnings;
{
- use warnings 'deprecated' ;
+ use warnings 'syntax' ;
eval {
- 1 if $a EQ $b ;
+ my $a =+ 1 ;
}; print STDERR $@ ;
- 1 if $a EQ $b ;
+ my $a =+ 1 ;
}
EXPECT
-Use of EQ is deprecated at - line 7.
-Use of EQ is deprecated at - line 9.
+Reversed += operator at - line 7.
+Reversed += operator at - line 9.
########
# Check scope of pragma with eval
no warnings;
{
- use warnings 'deprecated' ;
+ use warnings 'syntax' ;
eval {
no warnings ;
- 1 if $a EQ $b ;
+ my $a =+ 1 ;
}; print STDERR $@ ;
- 1 if $a EQ $b ;
+ my $a =+ 1 ;
}
EXPECT
-Use of EQ is deprecated at - line 10.
+Reversed += operator at - line 10.
########
# Check scope of pragma with eval
{
no warnings ;
eval '
- 1 if $a EQ $b ;
+ my $a =+ 1 ;
'; print STDERR $@ ;
- 1 if $a EQ $b ;
+ my $a =+ 1 ;
}
EXPECT
{
no warnings ;
eval q[
- use warnings 'deprecated' ;
- 1 if $a EQ $b ;
+ use warnings 'syntax' ;
+ my $a =+ 1 ;
]; print STDERR $@;
- 1 if $a EQ $b ;
+ my $a =+ 1 ;
}
EXPECT
-Use of EQ is deprecated at (eval 1) line 3.
+Reversed += operator at (eval 1) line 3.
########
# Check scope of pragma with eval
no warnings;
{
- use warnings 'deprecated' ;
+ use warnings 'syntax' ;
eval '
- 1 if $a EQ $b ;
+ my $a =+ 1 ;
'; print STDERR $@;
- 1 if $a EQ $b ;
+ my $a =+ 1 ;
}
EXPECT
-Use of EQ is deprecated at - line 9.
-Use of EQ is deprecated at (eval 1) line 2.
+Reversed += operator at - line 9.
+Reversed += operator at (eval 1) line 2.
########
# Check scope of pragma with eval
no warnings;
{
- use warnings 'deprecated' ;
+ use warnings 'syntax' ;
eval '
no warnings ;
- 1 if $a EQ $b ;
+ my $a =+ 1 ;
'; print STDERR $@;
- 1 if $a EQ $b ;
+ my $a =+ 1 ;
}
EXPECT
-Use of EQ is deprecated at - line 10.
+Reversed += operator at - line 10.
########
# Check the additive nature of the pragma
-1 if $a EQ $b ;
+my $a =+ 1 ;
my $a ; chop $a ;
-use warnings 'deprecated' ;
-1 if $a EQ $b ;
+use warnings 'syntax' ;
+$a =+ 1 ;
my $b ; chop $b ;
use warnings 'uninitialized' ;
my $c ; chop $c ;
-no warnings 'deprecated' ;
-1 if $a EQ $b ;
+no warnings 'syntax' ;
+$a =+ 1 ;
EXPECT
-Use of EQ is deprecated at - line 6.
+Reversed += operator at - line 6.
Use of uninitialized value in scalar chop at - line 9.
-Use of uninitialized value in string eq at - line 11.
-Use of uninitialized value in string eq at - line 11.
{
no warnings ;
eval '
- 1 if $a EQ $b ;
+ my $a =+ 1 ;
'; print STDERR $@ ;
- 1 if $a EQ $b ;
+ my $a =+ 1 ;
}
EXPECT
-W
# lint: check compile time $^W is zapped
BEGIN { $^W = 0 ;}
-$a = $b = 1 ;
-$a = 1 if $a EQ $b ;
+$a = 1 ;
+$a =+ 1 ;
close STDIN ; print STDIN "abc" ;
EXPECT
-Use of EQ is deprecated at - line 5.
+Reversed += operator at - line 5.
print() on closed filehandle main::STDIN at - line 6.
########
-W
-W
# lint: check "no warnings" is zapped
no warnings ;
-$a = $b = 1 ;
-$a = 1 if $a EQ $b ;
+$a = 1 ;
+$a =+ 1 ;
close STDIN ; print STDIN "abc" ;
EXPECT
-Use of EQ is deprecated at - line 5.
+Reversed += operator at - line 5.
print() on closed filehandle main::STDIN at - line 6.
########
-W
########
-W
--FILE-- abc.pm
-no warnings 'deprecated' ;
-my ($a, $b) = (0,0);
-1 if $a EQ $b ;
+no warnings 'syntax' ;
+my $a = 0;
+$a =+ 1 ;
1;
--FILE--
no warnings 'uninitialized' ;
use abc;
my $a ; chop $a ;
EXPECT
-Use of EQ is deprecated at abc.pm line 3.
+Reversed += operator at abc.pm line 3.
Use of uninitialized value in scalar chop at - line 3.
########
-W
--FILE-- abc
-no warnings 'deprecated' ;
-my ($a, $b) = (0,0);
-1 if $a EQ $b ;
+no warnings 'syntax' ;
+my $a = 0;
+$a =+ 1 ;
1;
--FILE--
no warnings 'uninitialized' ;
require "./abc";
my $a ; chop $a ;
EXPECT
-Use of EQ is deprecated at ./abc line 3.
+Reversed += operator at ./abc line 3.
Use of uninitialized value in scalar chop at - line 3.
########
-W
--FILE-- abc.pm
BEGIN {$^W = 0}
-my ($a, $b) = (0,0);
-1 if $a EQ $b ;
+my $a = 0 ;
+$a =+ 1 ;
1;
--FILE--
$^W = 0 ;
use abc;
my $a ; chop $a ;
EXPECT
-Use of EQ is deprecated at abc.pm line 3.
+Reversed += operator at abc.pm line 3.
Use of uninitialized value in scalar chop at - line 3.
########
-W
--FILE-- abc
BEGIN {$^W = 0}
-my ($a, $b) = (0,0);
-1 if $a EQ $b ;
+my $a = 0 ;
+$a =+ 1 ;
1;
--FILE--
$^W = 0 ;
require "./abc";
my $a ; chop $a ;
EXPECT
-Use of EQ is deprecated at ./abc line 3.
+Reversed += operator at ./abc line 3.
Use of uninitialized value in scalar chop at - line 3.
########
-W
my $a = "1"; my $b = "2";
no warnings ;
eval q[
- use warnings 'deprecated' ;
- 1 if $a EQ $b ;
+ use warnings 'syntax' ;
+ $a =+ 1 ;
]; print STDERR $@;
- 1 if $a EQ $b ;
+ $a =+ 1 ;
}
EXPECT
-Use of EQ is deprecated at - line 11.
-Use of EQ is deprecated at (eval 1) line 3.
+Reversed += operator at - line 11.
+Reversed += operator at (eval 1) line 3.
########
-W
# Check scope of pragma with eval
no warnings;
{
my $a = "1"; my $b = "2";
- use warnings 'deprecated' ;
+ use warnings 'syntax' ;
eval '
- 1 if $a EQ $b ;
+ $a =+ 1 ;
'; print STDERR $@;
- 1 if $a EQ $b ;
+ $a =+ 1 ;
}
EXPECT
-Use of EQ is deprecated at - line 10.
-Use of EQ is deprecated at (eval 1) line 2.
+Reversed += operator at - line 10.
+Reversed += operator at (eval 1) line 2.
########
-W
# Check scope of pragma with eval
no warnings;
{
my $a = "1"; my $b = "2";
- use warnings 'deprecated' ;
+ use warnings 'syntax' ;
eval '
no warnings ;
- 1 if $a EQ $b ;
+ $a =+ 1 ;
'; print STDERR $@;
- 1 if $a EQ $b ;
+ $a =+ 1 ;
}
EXPECT
-Use of EQ is deprecated at - line 11.
-Use of EQ is deprecated at (eval 1) line 3.
+Reversed += operator at - line 11.
+Reversed += operator at (eval 1) line 3.
-Check anti-lint
+syntax anti-lint
__END__
-X
# nolint: check compile time $^W is zapped
BEGIN { $^W = 1 ;}
$a = $b = 1 ;
-$a = 1 if $a EQ $b ;
+$a =+ 1 ;
close STDIN ; print STDIN "abc" ;
EXPECT
########
# nolint: check "no warnings" is zapped
use warnings ;
$a = $b = 1 ;
-$a = 1 if $a EQ $b ;
+$a =+ 1 ;
close STDIN ; print STDIN "abc" ;
EXPECT
########
########
-X
--FILE-- abc.pm
-use warnings 'deprecated' ;
-my ($a, $b) = (0,0);
-1 if $a EQ $b ;
+use warnings 'syntax' ;
+my $a = 0;
+$a =+ 1 ;
1;
--FILE--
use warnings 'uninitialized' ;
########
-X
--FILE-- abc
-use warnings 'deprecated' ;
-my ($a, $b) = (0,0);
-1 if $a EQ $b ;
+use warnings 'syntax' ;
+my $a = 0;
+$a =+ 1 ;
1;
--FILE--
use warnings 'uninitialized' ;
--FILE-- abc.pm
BEGIN {$^W = 1}
my ($a, $b) = (0,0);
-1 if $a EQ $b ;
+$a =+ 1 ;
1;
--FILE--
$^W = 1 ;
--FILE-- abc
BEGIN {$^W = 1}
my ($a, $b) = (0,0);
-1 if $a EQ $b ;
+$a =+ 1 ;
1;
--FILE--
$^W = 1 ;
{
no warnings ;
eval '
- 1 if $a EQ $b ;
+ my $a =+ 1 ;
'; print STDERR $@ ;
- 1 if $a EQ $b ;
+ my $a =+ 1 ;
}
EXPECT
{
no warnings ;
eval q[
- use warnings 'deprecated' ;
- 1 if $a EQ $b ;
+ use warnings 'syntax' ;
+ my $a =+ 1 ;
]; print STDERR $@;
- 1 if $a EQ $b ;
+ my $a =+ 1 ;
}
EXPECT
# Check scope of pragma with eval
no warnings;
{
- use warnings 'deprecated' ;
+ use warnings 'syntax' ;
eval '
- 1 if $a EQ $b ;
+ my $a =+ 1 ;
'; print STDERR $@;
- 1 if $a EQ $b ;
+ my $a =+ 1 ;
}
EXPECT
# Check scope of pragma with eval
no warnings;
{
- use warnings 'deprecated' ;
+ use warnings 'syntax' ;
eval '
no warnings ;
- 1 if $a EQ $b ;
+ my $a =+ 1 ;
'; print STDERR $@;
- 1 if $a EQ $b ;
+ my $a =+ 1 ;
}
EXPECT
__END__
# Check compile time warning
-use warnings FATAL => 'deprecated' ;
+use warnings FATAL => 'syntax' ;
{
no warnings ;
- 1 if $a EQ $b ;
+ $a =+ 1 ;
}
-1 if $a EQ $b ;
+$a =+ 1 ;
print STDERR "The End.\n" ;
EXPECT
-Use of EQ is deprecated at - line 8.
+Reversed += operator at - line 8.
########
# Check compile time warning
use warnings FATAL => 'all' ;
{
no warnings ;
- 1 if $a EQ $b ;
+ my $a =+ 1 ;
}
-1 if $a EQ $b ;
+my $a =+ 1 ;
print STDERR "The End.\n" ;
EXPECT
-Use of EQ is deprecated at - line 8.
+Reversed += operator at - line 8.
########
# Check runtime scope of pragma
########
--FILE-- abc
-1 if $a EQ $b ;
+$a =+ 1 ;
1;
--FILE--
-use warnings FATAL => 'deprecated' ;
+use warnings FATAL => 'syntax' ;
require "./abc";
EXPECT
########
--FILE-- abc
-use warnings FATAL => 'deprecated' ;
+use warnings FATAL => 'syntax' ;
1;
--FILE--
require "./abc";
-1 if $a EQ $b ;
+$a =+ 1 ;
EXPECT
########
--FILE-- abc
-use warnings 'deprecated' ;
-1 if $a EQ $b ;
+use warnings 'syntax' ;
+$a =+ 1 ;
1;
--FILE--
use warnings FATAL => 'uninitialized' ;
my $a ; chop $a ;
print STDERR "The End.\n" ;
EXPECT
-Use of EQ is deprecated at ./abc line 2.
+Reversed += operator at ./abc line 2.
Use of uninitialized value in scalar chop at - line 3.
########
--FILE-- abc.pm
-use warnings 'deprecated' ;
-1 if $a EQ $b ;
+use warnings 'syntax' ;
+$a =+ 1 ;
1;
--FILE--
use warnings FATAL => 'uninitialized' ;
my $a ; chop $a ;
print STDERR "The End.\n" ;
EXPECT
-Use of EQ is deprecated at abc.pm line 2.
+Reversed += operator at abc.pm line 2.
Use of uninitialized value in scalar chop at - line 3.
########
# Check scope of pragma with eval
no warnings ;
eval {
- use warnings FATAL => 'deprecated' ;
- 1 if $a EQ $b ;
+ use warnings FATAL => 'syntax' ;
+ $a =+ 1 ;
}; print STDERR "-- $@" ;
-1 if $a EQ $b ;
+$a =+ 1 ;
print STDERR "The End.\n" ;
EXPECT
-Use of EQ is deprecated at - line 6.
+Reversed += operator at - line 6.
########
# Check scope of pragma with eval
-use warnings FATAL => 'deprecated' ;
+use warnings FATAL => 'syntax' ;
eval {
- 1 if $a EQ $b ;
+ $a =+ 1 ;
}; print STDERR "-- $@" ;
-1 if $a EQ $b ;
+$a =+ 1 ;
print STDERR "The End.\n" ;
EXPECT
-Use of EQ is deprecated at - line 5.
+Reversed += operator at - line 5.
########
# Check scope of pragma with eval
-use warnings FATAL => 'deprecated' ;
+use warnings FATAL => 'syntax' ;
eval {
no warnings ;
- 1 if $a EQ $b ;
+ $a =+ 1 ;
}; print STDERR $@ ;
-1 if $a EQ $b ;
+$a =+ 1 ;
print STDERR "The End.\n" ;
EXPECT
-Use of EQ is deprecated at - line 8.
+Reversed += operator at - line 8.
########
# Check scope of pragma with eval
no warnings ;
eval {
- use warnings FATAL => 'deprecated' ;
+ use warnings FATAL => 'syntax' ;
}; print STDERR $@ ;
-1 if $a EQ $b ;
+$a =+ 1 ;
print STDERR "The End.\n" ;
EXPECT
The End.
# Check scope of pragma with eval
no warnings ;
eval q[
- use warnings FATAL => 'deprecated' ;
- 1 if $a EQ $b ;
+ use warnings FATAL => 'syntax' ;
+ $a =+ 1 ;
]; print STDERR "-- $@";
-1 if $a EQ $b ;
+$a =+ 1 ;
print STDERR "The End.\n" ;
EXPECT
--- Use of EQ is deprecated at (eval 1) line 3.
+-- Reversed += operator at (eval 1) line 3.
The End.
########
# Check scope of pragma with eval
-use warnings FATAL => 'deprecated' ;
+use warnings FATAL => 'syntax' ;
eval '
- 1 if $a EQ $b ;
+ $a =+ 1 ;
'; print STDERR "-- $@";
print STDERR "The End.\n" ;
EXPECT
--- Use of EQ is deprecated at (eval 1) line 2.
+-- Reversed += operator at (eval 1) line 2.
The End.
########
# Check scope of pragma with eval
-use warnings FATAL => 'deprecated' ;
+use warnings FATAL => 'syntax' ;
eval '
no warnings ;
- 1 if $a EQ $b ;
+ $a =+ 1 ;
'; print STDERR "-- $@";
-1 if $a EQ $b ;
+$a =+ 1 ;
print STDERR "The End.\n" ;
EXPECT
-Use of EQ is deprecated at - line 8.
+Reversed += operator at - line 8.
# 8signal
BEGIN { $| = 1; $SIG{__WARN__} = sub { print "WARN -- @_" } }
BEGIN { $SIG{__DIE__} = sub { print "DIE -- @_" } }
-1 if 1 EQ 2 ;
-use warnings qw(deprecated) ;
-1 if 1 EQ 2 ;
-use warnings FATAL => qw(deprecated) ;
-1 if 1 EQ 2 ;
+$a =+ 1 ;
+use warnings qw(syntax) ;
+$a =+ 1 ;
+use warnings FATAL => qw(syntax) ;
+$a =+ 1 ;
print "The End.\n" ;
EXPECT
-WARN -- Use of EQ is deprecated at - line 6.
-DIE -- Use of EQ is deprecated at - line 8.
-Use of EQ is deprecated at - line 8.
+WARN -- Reversed += operator at - line 6.
+DIE -- Reversed += operator at - line 8.
+Reversed += operator at - line 8.
we seem to have lost a few ambiguous warnings!!
- 1 if $a EQ $b ;
- 1 if $a NE $b ;
- 1 if $a LT $b ;
- 1 if $a GT $b ;
- 1 if $a GE $b ;
- 1 if $a LE $b ;
$a = <<;
Use of comma-less variable list is deprecated
(called 3 times via depcom)
__END__
# toke.c
use warnings 'deprecated' ;
-1 if $a EQ $b ;
-1 if $a NE $b ;
-1 if $a GT $b ;
-1 if $a LT $b ;
-1 if $a GE $b ;
-1 if $a LE $b ;
-no warnings 'deprecated' ;
-1 if $a EQ $b ;
-1 if $a NE $b ;
-1 if $a GT $b ;
-1 if $a LT $b ;
-1 if $a GE $b ;
-1 if $a LE $b ;
-EXPECT
-Use of EQ is deprecated at - line 3.
-Use of NE is deprecated at - line 4.
-Use of GT is deprecated at - line 5.
-Use of LT is deprecated at - line 6.
-Use of GE is deprecated at - line 7.
-Use of LE is deprecated at - line 8.
-########
-# toke.c
-use warnings 'deprecated' ;
format STDOUT =
@<<< @||| @>>> @>>>
$a $b "abc" 'def'
}
break;
case 'E':
- if (strEQ(d,"EQ")) { deprecate(d); return -KEY_eq;}
if (strEQ(d,"END")) return KEY_END;
break;
case 'e':
break;
}
break;
- case 'G':
- if (len == 2) {
- if (strEQ(d,"GT")) { deprecate(d); return -KEY_gt;}
- if (strEQ(d,"GE")) { deprecate(d); return -KEY_ge;}
- }
- break;
case 'g':
if (strnEQ(d,"get",3)) {
d += 3;
if (strEQ(d,"kill")) return -KEY_kill;
}
break;
- case 'L':
- if (len == 2) {
- if (strEQ(d,"LT")) { deprecate(d); return -KEY_lt;}
- if (strEQ(d,"LE")) { deprecate(d); return -KEY_le;}
- }
- break;
case 'l':
switch (len) {
case 2:
break;
}
break;
- case 'N':
- if (strEQ(d,"NE")) { deprecate(d); return -KEY_ne;}
- break;
case 'n':
if (strEQ(d,"next")) return KEY_next;
if (strEQ(d,"ne")) return -KEY_ne;