Use is_type_void(x) instead of x == type_void where qualified versions of void might...
[cparser] / preproctest / test.sh
1 #!/bin/bash
2
3 for i in *.c; do
4         echo -n "$i... "
5         pptest $i > /tmp/$i
6         if ! diff -u refresults/$i /tmp/$i > /dev/null; then
7                 echo "FAILED"
8         else
9                 echo "OK"
10         fi
11 done