blob: 868b03cce83e332d59b2b075a47b836e09491318 [file] [log] [blame]
Carl Worthe8c790b2010-05-10 16:21:10 -07001#!/bin/sh
Carl Worth3ff81672010-05-25 13:09:03 -07002set -e
3
4echo "Caution: These results are just verifying parse-ability, not correctness!"
Carl Worthe8c790b2010-05-10 16:21:10 -07005
6for test in *.c; do
7 echo "Testing $test"
8 ../glcpp < $test > $test.out
9 gcc -E $test -o $test.gcc
10 grep -v '^#' < $test.gcc > $test.expected
Carl Worth3ff81672010-05-25 13:09:03 -070011# diff -B -u $test.expected $test.out
Carl Worthe8c790b2010-05-10 16:21:10 -070012done