summaryrefslogtreecommitdiff
path: root/src/glsl/glcpp/tests/glcpp-test
blob: 396f6e175e8eaa31d39711b6d20ea360a11480c2 (plain)
1
2
3
4
5
6
7
#!/bin/sh

for test in *.c; do
    echo "Testing $test"
    ../glcpp < $test > $test.out
    diff -u $test.expected $test.out
done