blob: 5a323047db9d0cff48e39d69db1d44c39b46cb9f [file] [log] [blame]
Denis Vlasenko960eca62007-07-18 18:33:18 +00001#!/bin/sh
2
Denis Vlasenko960eca62007-07-18 18:33:18 +00003# Copyright 2007 by Denys Vlasenko <vda.linux@googlemail.com>
Denys Vlasenko0ef64bd2010-08-16 20:14:46 +02004# Licensed under GPLv2, see file LICENSE in this source tree.
Denis Vlasenko960eca62007-07-18 18:33:18 +00005
Mike Frysingercaa79402009-11-04 18:41:22 -05006. ./testing.sh
Denis Vlasenko960eca62007-07-18 18:33:18 +00007
Denis Vlasenkobb130792008-07-15 06:45:14 +00008# testing "description" "command" "result" "infile" "stdin"
Denis Vlasenko960eca62007-07-18 18:33:18 +00009
10testing "awk -F case 0" "awk -F '[#]' '{ print NF }'" "" "" ""
11testing "awk -F case 1" "awk -F '[#]' '{ print NF }'" "0\n" "" "\n"
12testing "awk -F case 2" "awk -F '[#]' '{ print NF }'" "2\n" "" "#\n"
13testing "awk -F case 3" "awk -F '[#]' '{ print NF }'" "3\n" "" "#abc#\n"
14testing "awk -F case 4" "awk -F '[#]' '{ print NF }'" "3\n" "" "#abc#zz\n"
15testing "awk -F case 5" "awk -F '[#]' '{ print NF }'" "4\n" "" "#abc##zz\n"
16testing "awk -F case 6" "awk -F '[#]' '{ print NF }'" "4\n" "" "z#abc##zz\n"
17testing "awk -F case 7" "awk -F '[#]' '{ print NF }'" "5\n" "" "z##abc##zz\n"
18
Denis Vlasenko66496d72008-08-29 08:37:07 +000019# 4294967295 = 0xffffffff
20testing "awk bitwise op" "awk '{ print or(4294967295,1) }'" "4.29497e+09\n" "" "\n"
Denys Vlasenkobfa1b2e2010-05-11 03:53:57 +020021optional DESKTOP
Denis Vlasenko66496d72008-08-29 08:37:07 +000022testing "awk hex const 1" "awk '{ print or(0xffffffff,1) }'" "4.29497e+09\n" "" "\n"
23testing "awk hex const 2" "awk '{ print or(0x80000000,1) }'" "2.14748e+09\n" "" "\n"
Denis Vlasenkoa2e1eea2008-09-02 09:00:23 +000024testing "awk oct const" "awk '{ print or(01234,1) }'" "669\n" "" "\n"
Denys Vlasenkobfa1b2e2010-05-11 03:53:57 +020025SKIP=
Denis Vlasenko66496d72008-08-29 08:37:07 +000026
Denys Vlasenkod527e0c2010-10-05 13:22:11 +020027# check that "hex/oct integer" heuristic doesn't kick in on 00NN.NNN
28testing "awk floating const with leading zeroes" \
29 "awk '{ printf \"%f %f\n\", \"000.123\", \"009.123\" }'" \
30 "0.123000 9.123000\n" \
31 "" "\n"
32
Denis Vlasenko67b5eeb2009-04-12 13:54:13 +000033# long field seps requiring regex
34testing "awk long field sep" "awk -F-- '{ print NF, length(\$NF), \$NF }'" \
35 "2 0 \n3 0 \n4 0 \n5 0 \n" \
36 "" \
37 "a--\na--b--\na--b--c--\na--b--c--d--"
38
Denis Vlasenko7a676642009-03-15 22:20:31 +000039# '@(samp|code|file)\{' is an invalid extended regex (unmatched '{'),
40# but gawk 3.1.5 does not bail out on it.
41testing "awk gsub falls back to non-extended-regex" \
42 "awk 'gsub(\"@(samp|code|file)\{\",\"\");'; echo \$?" "0\n" "" "Hi\n"
43
Denys Vlasenko8e3aff02010-05-10 11:00:11 +020044optional TAR BUNZIP2 FEATURE_SEAMLESS_BZ2
Denys Vlasenkoe3d90a92010-05-10 05:53:16 +020045test x"$SKIP" != x"1" && tar xjf awk_t1.tar.bz2
Denis Vlasenko3bb2bbd2008-07-01 01:57:36 +000046testing "awk 'gcc build bug'" \
47 "awk -f awk_t1_opt-functions.awk -f awk_t1_opth-gen.awk <awk_t1_input | md5sum" \
48 "f842e256461a5ab1ec60b58d16f1114f -\n" \
49 "" ""
Denys Vlasenkoe3d90a92010-05-10 05:53:16 +020050rm -rf awk_t1_* 2>/dev/null
51SKIP=
Denis Vlasenko3bb2bbd2008-07-01 01:57:36 +000052
Denis Vlasenko41d5ebe2009-01-25 01:00:15 +000053Q='":"'
54
55testing "awk NF in BEGIN" \
56 "awk 'BEGIN { print ${Q} NF ${Q} \$0 ${Q} \$1 ${Q} \$2 ${Q} }'" \
57 ":0::::\n" \
58 "" ""
59
Denys Vlasenko12847742009-11-30 01:15:04 +010060prg='
61function b(tmp) {
62 tmp = 0;
63 print "" tmp; #this line causes the bug
64 return tmp;
65}
66function c(tmpc) {
67 tmpc = b(); return tmpc;
68}
69BEGIN {
70 print (c() ? "string" : "number");
71}'
72testing "awk string cast (bug 725)" \
73 "awk '$prg'" \
74 "0\nnumber\n" \
75 "" ""
76
Alexander Shishkind03cd3b2010-02-25 17:55:40 +020077testing "awk handles whitespace before array subscript" \
78 "awk 'BEGIN { arr [3] = 1; print arr [3] }'" "1\n" "" ""
79
Denys Vlasenko6a0d7492010-10-23 21:02:15 +020080# GNU awk 3.1.5's "print ERRNO" prints "No such file or directory" instead of "2",
81# do we need to emulate that as well?
82testing "awk handles non-existing file correctly" \
83 "awk 'BEGIN { getline line <\"doesnt_exist\"; print ERRNO; ERRNO=0; close(\"doesnt_exist\"); print ERRNO; print \"Ok\" }'" \
84 "2\n0\nOk\n" "" ""
85
Denys Vlasenko3cb60c32010-03-10 19:20:32 +010086prg='
87BEGIN {
Denys Vlasenko90f19fa2010-03-11 08:27:53 +010088 u["a"]=1
89 u["b"]=1
90 u["c"]=1
91 v["d"]=1
Denys Vlasenko3cb60c32010-03-10 19:20:32 +010092 v["e"]=1
Denys Vlasenko90f19fa2010-03-11 08:27:53 +010093 v["f"]=1
94 for (l in u) {
Denys Vlasenko3cb60c32010-03-10 19:20:32 +010095 print "outer1", l;
96 for (l in v) {
97 print " inner", l;
98 }
99 print "outer2", l;
100 }
101 print "end", l;
102 l="a"
103 exit;
104}'
105testing "awk nested loops with the same variable" \
106 "awk '$prg'" \
107 "\
Denys Vlasenko90f19fa2010-03-11 08:27:53 +0100108outer1 a
109 inner d
Denys Vlasenko3cb60c32010-03-10 19:20:32 +0100110 inner e
Denys Vlasenko90f19fa2010-03-11 08:27:53 +0100111 inner f
112outer2 f
113outer1 b
114 inner d
Denys Vlasenko3cb60c32010-03-10 19:20:32 +0100115 inner e
Denys Vlasenko90f19fa2010-03-11 08:27:53 +0100116 inner f
117outer2 f
118outer1 c
119 inner d
Denys Vlasenko3cb60c32010-03-10 19:20:32 +0100120 inner e
Denys Vlasenko90f19fa2010-03-11 08:27:53 +0100121 inner f
122outer2 f
123end f
124" \
125 "" ""
126
127prg='
128BEGIN {
129 u["a"]=1
130 u["b"]=1
131 u["c"]=1
132 v["d"]=1
133 v["e"]=1
134 v["f"]=1
135 for (l in u) {
136 print "outer1", l;
137 for (l in v) {
138 print " inner", l;
139 break;
140 }
141 print "outer2", l;
142 }
143 print "end", l;
144 l="a"
145 exit;
146}'
147# It's not just buggy, it enters infinite loop. Thus disabled
148false && test x"$SKIP_KNOWN_BUGS" = x"" && testing "awk nested loops with the same variable and break" \
149 "awk '$prg'" \
150 "\
151outer1 a
152 inner d
153outer2 d
154outer1 b
155 inner d
156outer2 d
157outer1 c
158 inner d
159outer2 d
160end d
161" \
162 "" ""
163
164prg='
165function f() {
166 for (l in v) {
167 print " inner", l;
168 return;
169 }
170}
171
172BEGIN {
173 u["a"]=1
174 u["b"]=1
175 u["c"]=1
176 v["d"]=1
177 v["e"]=1
178 v["f"]=1
179 for (l in u) {
180 print "outer1", l;
181 f();
182 print "outer2", l;
183 }
184 print "end", l;
185 l="a"
186 exit;
187}'
188# It's not just buggy, it enters infinite loop. Thus disabled
189false && test x"$SKIP_KNOWN_BUGS" = x"" && testing "awk nested loops with the same variable and return" \
190 "awk '$prg'" \
191 "\
192outer1 a
193 inner d
194outer2 d
195outer1 b
196 inner d
197outer2 d
198outer1 c
199 inner d
200outer2 d
201end d
Denys Vlasenko3cb60c32010-03-10 19:20:32 +0100202" \
203 "" ""
204
Denys Vlasenko7b46d112011-09-11 00:30:56 +0200205testing "awk handles empty ()" \
206 "awk 'BEGIN {print()}' 2>&1" "awk: cmd. line:1: Empty sequence\n" "" ""
207
Denis Vlasenko960eca62007-07-18 18:33:18 +0000208exit $FAILCOUNT