blob: 396f6e175e8eaa31d39711b6d20ea360a11480c2 [file] [log] [blame]
Carl Worthe8c790b2010-05-10 16:21:10 -07001#!/bin/sh
Carl Worth3ff81672010-05-25 13:09:03 -07002
Carl Worthe8c790b2010-05-10 16:21:10 -07003for test in *.c; do
4 echo "Testing $test"
Carl Worth5ae88af2010-06-02 15:59:45 -07005 ../glcpp < $test > $test.out
Carl Worthbaa17c82010-05-27 14:53:51 -07006 diff -u $test.expected $test.out
Carl Worthe8c790b2010-05-10 16:21:10 -07007done