blob: 022a23671216f713be74c1b71b8fdbfa155ece9c (
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 -u $test.expected $test.out
done
|