Browse Source

awk: add a test that $NF is empty

Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Denys Vlasenko 3 years ago
parent
commit
758c2bd58e
1 changed files with 9 additions and 2 deletions
  1. 9 2
      testsuite/awk.tests

+ 9 - 2
testsuite/awk.tests

@@ -398,12 +398,19 @@ testing 'awk do not allow "str"++' \
 	'' \
 	'anything'
 
-#gawk compat: FS regex matches only non-empty separators:
-#with -*, the splitting is NOT f o o b a r, but foo bar:
+# gawk compat: FS regex matches only non-empty separators:
+# with -*, the splitting is NOT f o o b a r, but foo bar:
 testing 'awk FS regex which can match empty string' \
 	"awk -F '-*' '{print \$1 \"-\" \$2 \"=\" \$3 \"*\" \$4}'" \
 	"foo-bar=*\n" \
 	'' \
 	'foo--bar'
 
+# last+1 field should be empty (had a bug where it wasn't)
+testing 'awk $NF is empty' \
+	"awk -F '=+' '{print \$NF}'" \
+	"\n" \
+	'' \
+	'a=====123='
+
 exit $FAILCOUNT