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

8 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