From: Eric Whitney <enwlinux@gmail.com>
To: xfs@oss.sgi.com
Cc: sandeen@redhat.com
Subject: [PATCH V2] xfstests: don't remove trailing zeros from integers
Date: Fri, 1 Mar 2013 13:01:58 -0500 [thread overview]
Message-ID: <20130301180158.GC6449@wallace> (raw)
_within_tolerance strips trailing zeros from the min and max range
values it outputs. This leads to damage if the min or max value is
an integer containing trailing zeros rather than a real number with
a fractional part containing trailing zeros. Xfstest 289 can exhibit
this problem when its input is out of range. Modify the code so it
will only remove trailing zeros found after a decimal point, and
remove decimal points not followed by digits.
Signed-off-by: Eric Whitney <enwlinux@gmail.com>
---
common.filter | 7 +++++--
1 file changed, 5 insertions(+), 2 deletions(-)
diff --git a/common.filter b/common.filter
index 9e4c90c..bfc800b 100644
--- a/common.filter
+++ b/common.filter
@@ -106,8 +106,11 @@ EOF
# fix up min, max precision for output
# can vary for 5.3, 6.2
- _min=`echo $_min | sed -e 's/0*$//'` # get rid of trailling zeroes
- _max=`echo $_max | sed -e 's/0*$//'` # get rid of trailling zeroes
+
+ # remove any trailing zeroes from min, max if they have fractional parts
+ # and then remove any decimal points not followed by digits
+ _min=`echo $_min | sed -e '/\./s/0*$//' | sed -e 's/\.$//'`
+ _max=`echo $_max | sed -e '/\./s/0*$//' | sed -e 's/\.$//'`
if [ $_in_range -eq 1 ]
then
--
1.7.10.4
_______________________________________________
xfs mailing list
xfs@oss.sgi.com
http://oss.sgi.com/mailman/listinfo/xfs
next reply other threads:[~2013-03-01 18:02 UTC|newest]
Thread overview: 5+ messages / expand[flat|nested] mbox.gz Atom feed top
2013-03-01 18:01 Eric Whitney [this message]
2013-03-01 20:30 ` [PATCH V2] xfstests: don't remove trailing zeros from integers Dave Chinner
2013-03-05 19:20 ` Rich Johnston
2013-03-05 19:25 ` Eric Sandeen
2013-03-05 19:31 ` Eric Whitney
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20130301180158.GC6449@wallace \
--to=enwlinux@gmail.com \
--cc=sandeen@redhat.com \
--cc=xfs@oss.sgi.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox