blob: 396f6e175e8eaa31d39711b6d20ea360a11480c2 [file] [log] [blame]
#!/bin/sh
for test in *.c; do
echo "Testing $test"
../glcpp < $test > $test.out
diff -u $test.expected $test.out
done