(testsuite) Add check for awk with POSIX character classes.

This commit is contained in:
Ville Skyttä 2010-01-17 15:36:01 +02:00
parent 2f78769d65
commit 556d1304d0

View File

@ -16,7 +16,10 @@ cd $(dirname "$0") ; cd ..
gitgrep "\bawk\b.*-F([[:space:]]|[[:space:]]*[\"'][^\"']{2,})" \ gitgrep "\bawk\b.*-F([[:space:]]|[[:space:]]*[\"'][^\"']{2,})" \
'awk with -F char or -F ERE, use -Fchar instead (Solaris)' 'awk with -F char or -F ERE, use -Fchar instead (Solaris)'
gitgrep "\bawk\b.*\[:[a-z]*:\]" \
'awk with POSIX character class not supported in mawk (Debian/Ubuntu)'
gitgrep '\bsed\b.*\\[?+]' \ gitgrep '\bsed\b.*\\[?+]' \
'sed with ? or +, use POSIX BRE instead (\{m,n\})' 'sed with ? or +, use POSIX BRE instead (\{m,n\})'