mesa/glcpp/tests/glcpp-test

8 lines
131 B
Text
Raw Normal View History

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