aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLev Walkin <vlm@lionet.info>2004-08-18 04:52:12 +0000
committerLev Walkin <vlm@lionet.info>2004-08-18 04:52:12 +0000
commit6b955c682a233453deae1dedd9913d1ff830c0eb (patch)
tree44e794d88c3685e07d8d42d3453a11d01acea5a8
parent4d9fbb48074a3c8a3a220d4e21a9784c53dd7385 (diff)
treat embedded zeroes well
-rwxr-xr-xasn1c/check-parsing.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/asn1c/check-parsing.sh b/asn1c/check-parsing.sh
index dc20acaa..ca00c5f0 100755
--- a/asn1c/check-parsing.sh
+++ b/asn1c/check-parsing.sh
@@ -10,7 +10,7 @@ for ref in ../tests/*.asn1.-*; do
echo "Checking $src against $ref"
./asn1c "-$flags" "$src" > "$tmpfile" || ec=$?
if [ $? = 0 ]; then
- diff -u "$ref" "$tmpfile" || ec=$?
+ diff -a -u "$ref" "$tmpfile" || ec=$?
fi
rm -f "$tmpfile"
done