blob: 022a23671216f713be74c1b71b8fdbfa155ece9c [file] [log] [blame]
Carl Worthe8c790b2010-05-10 16:21:10 -07001#!/bin/sh
2
3for test in *.c; do
4 echo "Testing $test"
5 ../glcpp < $test > $test.out
6 gcc -E $test -o $test.gcc
7 grep -v '^#' < $test.gcc > $test.expected
Carl Worthb20d33c2010-05-20 22:27:07 -07008 diff -B -u $test.expected $test.out
Carl Worthe8c790b2010-05-10 16:21:10 -07009done