diff options
author | Kaz Kylheku <kaz@kylheku.com> | 2023-06-26 22:27:58 -0700 |
---|---|---|
committer | Kaz Kylheku <kaz@kylheku.com> | 2023-06-26 22:27:58 -0700 |
commit | 0907050e35c9887dcf961bda2111bd34c3eeb0e8 (patch) | |
tree | 5c7a6494195460be9eed1360fb4cbfc236434dbd /runtests | |
parent | c9f4b29927db3499e6b2d0b7ac0399447bca073a (diff) | |
download | cppawk-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-x | runtests | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -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 |