blob: f7f8991bbe278a98f61cf69b8988d9b19fd8483b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#!/bin/sh
trap 'rm -f output script.sh' EXIT INT TERM
cppawk=./cppawk ./testsuite.awk testcases
cppawk="./cppawk --nobash" ./testsuite.awk testcases
cppawk=./cppawk ./testsuite.awk testcases-case
cppawk="./cppawk --awk=mawk" ./testsuite.awk testcases-case
cppawk=./cppawk ./testsuite.awk testcases-narg
cppawk=./cppawk ./testsuite.awk testcases-iter
cppawk="./cppawk --awk=mawk" ./testsuite.awk testcases-iter
|