diff options
author | Jonathan Helmus <jjhelmus@gmail.com> | 2017-09-20 13:06:25 -0500 |
---|---|---|
committer | Jonathan Helmus <jjhelmus@gmail.com> | 2017-09-20 15:35:48 -0500 |
commit | 3e057352d0e84c6bb14c3b38d6721b4dff8c07a1 (patch) | |
tree | 4ad89b3110a009649933aa776ea5b47cd80bcee9 /numpy/distutils/tests | |
parent | 76cabbbf3b985631212cba6b164c4bac3d2d42c2 (diff) | |
download | numpy-3e057352d0e84c6bb14c3b38d6721b4dff8c07a1.tar.gz |
BUG: adjust gfortran version search regex
Adjust the gfortran regex to require a '.' to be present in the version number.
This avoids matching a hash or text containing a '-' such as the version string
from the compilers produced by crosstool-NG. For example:
GNU Fortran (crosstool-NG 8a21ab48) 7.2.0
Diffstat (limited to 'numpy/distutils/tests')
-rw-r--r-- | numpy/distutils/tests/test_fcompiler_gnu.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/numpy/distutils/tests/test_fcompiler_gnu.py b/numpy/distutils/tests/test_fcompiler_gnu.py index 9ad63cf09..659520513 100644 --- a/numpy/distutils/tests/test_fcompiler_gnu.py +++ b/numpy/distutils/tests/test_fcompiler_gnu.py @@ -26,7 +26,8 @@ gfortran_version_strings = [ '4.9.1'), ("gfortran: warning: couldn't understand kern.osversion '14.1.0\n" "gfortran: warning: yet another warning\n4.9.1", - '4.9.1') + '4.9.1'), + ('GNU Fortran (crosstool-NG 8a21ab48) 7.2.0', '7.2.0') ] class TestG77Versions(object): |