diff options
author | Arnold D. Robbins <arnold@skeeve.com> | 2021-01-07 22:09:04 +0200 |
---|---|---|
committer | Arnold D. Robbins <arnold@skeeve.com> | 2021-01-07 22:09:04 +0200 |
commit | 62a83e256f4db1576a0652780810a70d26ae6136 (patch) | |
tree | d00686f2c38bd2ced105e2088afb02e01f650fdb /test/modifiers.sh | |
parent | e33ab738045b82db7b449e92c8633ef1d44bb8a7 (diff) | |
download | egawk-62a83e256f4db1576a0652780810a70d26ae6136.tar.gz egawk-62a83e256f4db1576a0652780810a70d26ae6136.tar.bz2 egawk-62a83e256f4db1576a0652780810a70d26ae6136.zip |
And add additional test files.
Diffstat (limited to 'test/modifiers.sh')
-rwxr-xr-x | test/modifiers.sh | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/test/modifiers.sh b/test/modifiers.sh new file mode 100755 index 00000000..07b95686 --- /dev/null +++ b/test/modifiers.sh @@ -0,0 +1,8 @@ +#! /bin/sh + +AWK=${AWK:-../gawk} +for modifier in h l L j t z +do + $AWK -v let=$modifier --posix --lint 'BEGIN { printf "%" let "u\n", 12 }' +done +exit 0 |