File size: 907 Bytes
3dcad1f |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 |
# guile-test.sh --
#
for item in \
test-glr-basics-01.scm \
test-glr-basics-02.scm \
test-glr-basics-03.scm \
test-glr-basics-04.scm \
test-glr-basics-05.scm \
test-glr-associativity.scm \
test-glr-script-expression.scm \
test-glr-single-expressions.scm \
\
test-lr-basics-01.scm \
test-lr-basics-02.scm \
test-lr-basics-03.scm \
test-lr-basics-04.scm \
test-lr-basics-05.scm \
test-lr-error-recovery-01.scm \
test-lr-error-recovery-02.scm \
test-lr-no-clause.scm \
test-lr-associativity-01.scm \
test-lr-script-expression.scm \
test-lr-single-expressions.scm
do
printf "\n\n*** Running $item\n"
guile $item
done
### end of file
|