Merge Carl's preprocessor into the glcpp subdirectory.

This commit is contained in:
Kenneth Graunke
2010-06-21 11:22:11 -07:00
147 changed files with 3508 additions and 0 deletions
+7
View File
@@ -0,0 +1,7 @@
#!/bin/sh
for test in *.c; do
echo "Testing $test"
../glcpp < $test > $test.out
diff -u $test.expected $test.out
done