File: ProhibitMismatchedOperators.run

package info (click to toggle)
libperl-critic-perl 1.156-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 3,544 kB
  • sloc: perl: 24,092; lisp: 341; makefile: 7
file content (147 lines) | stat: -rw-r--r-- 3,432 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
## name Basic passing
## failures 0
## cut

if (1 == 1 || 1 != 1 || 1 > 1 || 1 >= 1 || 1 < 1 || 1 <= 1) {}
if (1 + 1 || 1 - 1 || 1 * 1 || 1 / 1) {}

if ($a == 1 || $a != 1 || $a > 1 || $a >= 1 || $a < 1 || $a <= 1) {}
if ($a + 1 || $a - 1 || $a * 1 || $a / 1) {}
$a += 1;
$a -= 1;
$a *= 1;
$a /= 1;

if ($a == $a || $a != $a || $a > $a || $a >= $a || $a < $a || $a <= $a) {}
if ($a + $a || $a - $a || $a * $a || $a / $a) {}
$a += $a;
$a -= $a;
$a *= $a;
$a /= $a;

if ('' eq '' || '' ne '' || '' gt '' || '' lt '' || '' ge '' || '' le '' || '' . '') {}
if ('' eq $a || '' ne $a || '' gt $a || '' lt $a || '' ge $a || '' le $a || '' . $a) {}

#-----------------------------------------------------------------------------

## name Basic failure
## failures 39
## cut

if ('' == 1 || '' != 1 || '' > 1  || '' >= 1 || '' < 1 || '' <= 1) {}
if ('' + 1  || '' - 1  || '' * 1  || '' / 1) {}

if ($a == '' || $a != '' || $a > ''  || $a >= '' || $a < '' || $a <= '') {}
if ($a + ''  || $a - ''  || $a * ''  || $a / '') {}
$a += '';
$a -= '';
$a *= '';
$a /= '';

if ($a eq 1 || $a ne 1 || $a lt 1 || $a gt 1 || $a le 1 || $a ge 1 || $a . 1) {}
if ('' eq 1 || '' ne 1 || '' lt 1 || '' gt 1 || '' le 1 || '' ge 1 || '' . 1) {}
$a .= 1;

#-----------------------------------------------------------------------------

## name 'foo' x 15 x 'bar' is OK ( RT #54524 )
## failures 0
## cut

'foo' x 15 . 'bar';
( 'foo' . ' ' ) x 15 . 'bar';
@foo x 15 . 'bar';
( 1, 2, 5 ) x 15 . 'bar';

#-----------------------------------------------------------------------------

## name File operators passing
## failures 0
## cut

-M 'file' > 0;
-r 'file' < 1;
-w 'file' != 1;
-x 'file' == 0;
-o 'file' == 1234;
-R 'file' != 3210;
-W 'file' == 4321;
-X 'file' != 5678;
-O 'file' == 9876l;
-e 'file' == 1 && -z 'file';
-s 'file' / 1024;
-f 'file' == 1 && -d 'file' != 1;
-l 'file' && !-p 'file';
-S 'file' == 1 && -b 'file' != 1;
-c 'file' + 1;
-t 'file' > 1;
-u 'file' * 123;
-g 'file' != 1;
-k 'file' - -T 'file';
-B 'file' < 1;
-M 'file' + -A 'file';
(-M 'file') > 0 || -M 'file' > 0;

#-----------------------------------------------------------------------------

## name File operators failure
## failures 25
## cut

-M 'file' gt "0";
-r 'file' lt "1";
-w 'file' ne "1";
-x 'file' eq "0";
-o 'file' eq "1234";
-R 'file' ne "3210";
-W 'file' eq "4321";
-X 'file' ne "5678";
-O 'file' eq "9876l";
-e 'file' eq "1";
-z 'file' ne "1";
-s 'file' eq "1024";
-f 'file' eq "1";
-d 'file' ne "1";
-l 'file' eq "1";
-S 'file' eq "1";
-b 'file' ne "1";
-c 'file' eq "1";
-t 'file' gt "1";
-u 'file' eq "123";
-g 'file' ne "1";
-k 'file' eq "1";
-T 'file' ne "1";
-B 'file' lt "1";
-A 'file' eq "1";

#-----------------------------------------------------------------------------

## name Allow adding zero to special string numbers ('inf' and 'NaN')
## failures 0
## cut

my $i = 'NaN'+0;
$i = 0+'Nan';
$i = 'inf'+0;
$i = 0+'inf';
$i = '-inf'+0;
$i = '+inf'+0;

#-----------------------------------------------------------------------------

## name Does not allow adding non-zero to special string numbers ('inf' and 'NaN')
## failures 2
## cut

my $i = 'NaN'+1;
$i = 'inf'+2;

#-----------------------------------------------------------------------------
# Local Variables:
#   mode: cperl
#   cperl-indent-level: 4
#   fill-column: 78
#   indent-tabs-mode: nil
#   c-indentation-style: bsd
# End:
# ex: set ts=8 sts=4 sw=4 tw=78 ft=perl expandtab shiftround :