808401fd79
Still not doing any macro expansion just yet. But it should be fairly easy from here.
14 lines
347 B
Bash
Executable File
14 lines
347 B
Bash
Executable File
#!/bin/sh
|
|
set -e
|
|
|
|
echo "Caution: These results are just verifying parse-ability, not correctness!"
|
|
|
|
for test in *.c; do
|
|
echo "Testing $test"
|
|
../glcpp < $test > $test.out
|
|
gcc -E $test -o $test.gcc
|
|
# grep -v '^#' < $test.gcc > $test.expected
|
|
grep -v '^[ ]*#' < $test > $test.expected
|
|
diff -w -u $test.expected $test.out
|
|
done
|