Commit 21703295 authored by Ken Manheimer's avatar Ken Manheimer

Emit a summary at the end naming files that had differences across the

regression.
parent 70a321b4
...@@ -3,6 +3,7 @@ ...@@ -3,6 +3,7 @@
# Compare current StructuredText.py processing against prior versions. # Compare current StructuredText.py processing against prior versions.
# You should see no output if there's no discrepancies. # You should see no output if there's no discrepancies.
differences=""
for i in *.stx; do for i in *.stx; do
stx=$i stx=$i
base=${i%.stx} base=${i%.stx}
...@@ -12,6 +13,10 @@ for i in *.stx; do ...@@ -12,6 +13,10 @@ for i in *.stx; do
if cmp $ref $new; then if cmp $ref $new; then
: :
else else
echo ... so there are differences in the processing differences="$differences $stx"
fi fi
done done
if [ -n "$differences" ]; then
echo "Differences encountered processing$differences."
fi
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment