mesa/glcpp/tests/glcpp-test
2010-06-21 11:22:11 -07:00

7 lines
131 B
Bash
Executable file

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