Files
c3c/resources/grammar/check_grammar.sh
Christoffer Lerno ce06de4b18 Updates to grammar.
2025-02-09 02:19:27 +01:00

25 lines
537 B
Bash
Executable File

echo "Testing lib"
for fn in `find ../../../c3c/lib -name '*.c3' | sort`
do
echo -n $fn
cat $fn | ./c3yacc
done
echo "Testing resources"
for fn in `find ../../../c3c/resources -name '*.c3' | sort`
do
echo -n $fn
cat $fn | ./c3yacc
done
echo "Testing unit tests"
for fn in `find ../../../c3c/test/unit -name '*.c3' | sort`
do
echo -n $fn
cat $fn | ./c3yacc
done
echo "Testing compiler tests"
for fn in `find ../../../c3c/test/test_suite -name '*.c3t' | sort`
do
echo -n $fn
cat $fn | ./c3yacc
done