summaryrefslogtreecommitdiff
path: root/tests/glcpp-test
blob: ba398af0d5422244fcd92153e424cf4391684e5c (plain)
1
2
3
4
5
6
7
8
9
10
#!/bin/sh

for test in *.c; do
    echo "Testing $test"
    ../glcpp < $test > $test.glcpp
    grep -v '^$' < $test.glcpp > $test.out || true
    gcc -E $test -o $test.gcc
    grep -v '^#' < $test.gcc | grep -v '^$' > $test.expected || true
    diff -u $test.expected $test.out
done