blob: bd204de1e2f5d6a211512153c826409e3eed6238 (
plain)
1
2
3
4
5
6
7
8
9
|
#!/bin/sh
for test in *.c; do
echo "Testing $test"
../glcpp < $test > $test.out
gcc -E $test -o $test.gcc
grep -v '^#' < $test.gcc > $test.expected
diff -w -u $test.expected $test.out
done
|