summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorvlefevre <vlefevre@280ebfd0-de03-0410-8827-d642c229c3f4>2019-02-04 13:23:37 +0000
committervlefevre <vlefevre@280ebfd0-de03-0410-8827-d642c229c3f4>2019-02-04 13:23:37 +0000
commit2cd34be6bf7ff2744ab7cdfa176d5423bacb4d13 (patch)
treed6e097c344571ed9070e8de4d8d91a08128983d2 /tools
parent153f73a78e0bb7e0aad5f428031522bc6c9148d4 (diff)
downloadmpfr-2cd34be6bf7ff2744ab7cdfa176d5423bacb4d13.tar.gz
[tools/mpfrlint] Check that native FP division by zero is not used.
git-svn-id: svn://scm.gforge.inria.fr/svn/mpfr/trunk@13441 280ebfd0-de03-0410-8827-d642c229c3f4
Diffstat (limited to 'tools')
-rwxr-xr-xtools/mpfrlint4
1 files changed, 4 insertions, 0 deletions
diff --git a/tools/mpfrlint b/tools/mpfrlint
index 7aae5403c..454ec3184 100755
--- a/tools/mpfrlint
+++ b/tools/mpfrlint
@@ -362,6 +362,10 @@ err-if-output \
-t "mpfr-impl.h inclusion" grep --exclude=mpfr-test.h \
'^ *# *include *"mpfr-impl.h"' tests/*.{c,h}
+grep -E '/ *0?\.0([^0-9]|$)' tests/*.{c,h} | \
+ err-if-output --msg='division by zero yields issues on some platforms' \
+ -t "division by zero" grep -Ev '/\*.*/ *0?\.0'
+
# Check that the usual test programs call tests_start_mpfr and tests_end_mpfr.
if grep -q TESTS_NO_TVERSION tests/Makefile.am; then
tprgvar=TESTS_NO_TVERSION