OSDN Git Service

396f6e175e8eaa31d39711b6d20ea360a11480c2
[android-x86/external-mesa.git] / tests / glcpp-test
1 #!/bin/sh
2
3 for test in *.c; do
4     echo "Testing $test"
5     ../glcpp < $test > $test.out
6     diff -u $test.expected $test.out
7 done