summaryrefslogtreecommitdiff
path: root/tests/glcpp-test
diff options
context:
space:
mode:
authorCarl Worth <cworth@cworth.org>2010-06-02 15:59:45 -0700
committerCarl Worth <cworth@cworth.org>2010-06-02 15:59:45 -0700
commit5ae88af9886b4b7bf486cbc0d10a9bab6456165f (patch)
treef3d1bc0b6b4efaa9fc164ec17bb1c76aa2f7bd45 /tests/glcpp-test
parent14c98a56442a076a831aee85e9b3e54d934ec360 (diff)
test suite: Add expected output for every test.
Rather than using the (munged) output of "gcc -E" we now capture precisely the output we expect from every test case. This allows us to stay immune from strange output from gcc (unpredictable whitespace output---aprticularly with different gcc versions). This will also allow us to write tests that capture expected error messages from the preprocessor as well.
Diffstat (limited to 'tests/glcpp-test')
-rwxr-xr-xtests/glcpp-test5
1 files changed, 1 insertions, 4 deletions
diff --git a/tests/glcpp-test b/tests/glcpp-test
index 24110333a5..396f6e175e 100755
--- a/tests/glcpp-test
+++ b/tests/glcpp-test
@@ -2,9 +2,6 @@
for test in *.c; do
echo "Testing $test"
- ../glcpp < $test > $test.glcpp
- grep -v '^ *$' < $test.glcpp > $test.out || true
- gcc -E $test -o $test.gcc
- grep -v '^#' < $test.gcc | grep -v '^$' | sed -r -e 's/^ +/ /' > $test.expected || true
+ ../glcpp < $test > $test.out
diff -u $test.expected $test.out
done