2010-05-10 16:21:10 -07:00
|
|
|
#!/bin/sh
|
2010-05-25 13:09:03 -07:00
|
|
|
|
2010-05-10 16:21:10 -07:00
|
|
|
for test in *.c; do
|
|
|
|
|
echo "Testing $test"
|
2010-06-02 15:59:45 -07:00
|
|
|
../glcpp < $test > $test.out
|
2010-05-27 14:53:51 -07:00
|
|
|
diff -u $test.expected $test.out
|
2010-05-10 16:21:10 -07:00
|
|
|
done
|