Add the helper function create_Const_from_bool() to create 0/1 constant from a boolea...
[cparser] / lextest / do_tests.sh
1 #!/bin/sh
2 cd `dirname $0`
3 for i in tokenstreams/*; do
4         if [ "$i" != "tokenstreams/refresults" ]; then
5                 echo "==> Checking $i"
6                 ../cparser --lextest $i > /tmp/tokenstream
7                 diff -u tokenstreams/refresults/`basename $i` /tmp/tokenstream
8         fi
9 done