summaryrefslogtreecommitdiff
path: root/tests/glcpp-test
blob: 25685eeabe5448bb0da76a882def22ccdbb6bac1 (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 -u $test.expected $test.out
done