aboutsummaryrefslogtreecommitdiffstats
path: root/runtests
diff options
context:
space:
mode:
authorKaz Kylheku <kaz@kylheku.com>2023-06-26 22:27:58 -0700
committerKaz Kylheku <kaz@kylheku.com>2023-06-26 22:27:58 -0700
commit0907050e35c9887dcf961bda2111bd34c3eeb0e8 (patch)
tree5c7a6494195460be9eed1360fb4cbfc236434dbd /runtests
parentc9f4b29927db3499e6b2d0b7ac0399447bca073a (diff)
downloadcppawk-0907050e35c9887dcf961bda2111bd34c3eeb0e8.tar.gz
cppawk-0907050e35c9887dcf961bda2111bd34c3eeb0e8.tar.bz2
cppawk-0907050e35c9887dcf961bda2111bd34c3eeb0e8.zip
Add function for shell quoting.
* README.md: Mention <quote.h> and cppawk-quote man page. * share/cppawk/include/quote.h, * share/cppawk/include/quote-priv.h: New files. * testcases-quote: New file. * cppawk-quote.1: New file. * runtests: Add testcases-quote.
Diffstat (limited to 'runtests')
-rwxr-xr-xruntests5
1 files changed, 5 insertions, 0 deletions
diff --git a/runtests b/runtests
index 961bc19..91ff3c6 100755
--- a/runtests
+++ b/runtests
@@ -41,3 +41,8 @@ if [ -z "$suite" -o "$suite" = "array" ] ; then
cppawk=./bin/cppawk ./testsuite.awk testcases-array
cppawk="./bin/cppawk --awk=mawk" ./testsuite.awk -v skip=5,6 testcases-array
fi
+
+if [ -z "$suite" -o "$suite" = "quote" ] ; then
+ cppawk=./bin/cppawk ./testsuite.awk testcases-quote
+ cppawk="./bin/cppawk --awk=mawk" ./testsuite.awk testcases-quote
+fi