aboutsummaryrefslogtreecommitdiff
path: root/testsuite/awk.tests
diff options
context:
space:
mode:
authorBrian Foley <bpfoley@google.com>2016-10-15 14:45:40 +0100
committerDenys Vlasenko <vda.linux@googlemail.com>2016-10-24 02:09:56 +0200
commit61d5997b586a28f79d54b28ce6963b643dff6e9e (patch)
tree161fb8911ed9a5bda79d1a1f8ac34534aae40564 /testsuite/awk.tests
parent1336052a490ffe7a3790ee3c1366756ca8a7f5ca (diff)
downloadbusybox-61d5997b586a28f79d54b28ce6963b643dff6e9e.tar.gz
awk: fix segfault on for loop syntax error
Parsing "for()" segfaults as awk fails to find loop iteration expressions. Signed-off-by: Brian Foley <bpfoley@google.com> Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'testsuite/awk.tests')
-rwxr-xr-xtestsuite/awk.tests3
1 files changed, 3 insertions, 0 deletions
diff --git a/testsuite/awk.tests b/testsuite/awk.tests
index adab4ae1e..82937bc10 100755
--- a/testsuite/awk.tests
+++ b/testsuite/awk.tests
@@ -316,6 +316,9 @@ testing "awk continue" \
"" \
'BEGIN { if (1) continue; else a = 1 }'
+testing "awk handles invalid for loop" \
+ "awk '{ for() }' 2>&1" "awk: cmd. line:1: Unexpected token\n" "" ""
+
# testing "description" "command" "result" "infile" "stdin"
exit $FAILCOUNT