aboutsummaryrefslogtreecommitdiff
path: root/testsuite/awk.tests
diff options
context:
space:
mode:
authorDenys Vlasenko <vda.linux@googlemail.com>2013-10-12 04:51:54 +0200
committerDenys Vlasenko <vda.linux@googlemail.com>2013-10-12 04:51:54 +0200
commit7985bc109e0d738644094f391d08d9848a2f2b50 (patch)
tree7bc6aa3e04ebd86bbd8516bffe9e3c8b894534b9 /testsuite/awk.tests
parent1d30b3f1f66a0cd179f47082245079ef357b6a66 (diff)
downloadbusybox-7985bc109e0d738644094f391d08d9848a2f2b50.tar.gz
awk: fix length(array)
function old new delta evaluate 3526 3548 +22 Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'testsuite/awk.tests')
-rwxr-xr-xtestsuite/awk.tests5
1 files changed, 5 insertions, 0 deletions
diff --git a/testsuite/awk.tests b/testsuite/awk.tests
index 6af6072b8..a02302405 100755
--- a/testsuite/awk.tests
+++ b/testsuite/awk.tests
@@ -274,6 +274,11 @@ testing "awk large integer" \
"2147483647 2147483647 0 2147483648 2147483648 0\n" \
"" ""
+testing "awk length(array)" \
+ "awk 'BEGIN{ A[1]=2; A["qwe"]="asd"; print length(A)}'" \
+ "2\n" \
+ "" ""
+
# testing "description" "command" "result" "infile" "stdin"
exit $FAILCOUNT