diff options
author | Denys Vlasenko | 2013-10-12 04:51:54 +0200 |
---|---|---|
committer | Denys Vlasenko | 2013-10-12 04:51:54 +0200 |
commit | 7985bc109e0d738644094f391d08d9848a2f2b50 (patch) | |
tree | 7bc6aa3e04ebd86bbd8516bffe9e3c8b894534b9 /testsuite/awk.tests | |
parent | 1d30b3f1f66a0cd179f47082245079ef357b6a66 (diff) | |
download | busybox-7985bc109e0d738644094f391d08d9848a2f2b50.zip busybox-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-x | testsuite/awk.tests | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/testsuite/awk.tests b/testsuite/awk.tests index 6af6072..a023024 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 |