blob: 673a4f45e96af735f98180447f87297bd22aa59f (
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 -B -w -u $test.expected $test.out
done
|