OXIESEC PANEL
- Current Dir:
/
/
usr
/
local
/
lib
/
python3.6
/
dist-packages
/
numpy
/
distutils
/
tests
Server IP: 139.59.38.164
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
10/28/2024 05:59:26 AM
rwxr-xr-x
📄
__init__.py
0 bytes
10/28/2024 05:59:24 AM
rw-r--r--
📁
__pycache__
-
10/28/2024 05:59:26 AM
rwxr-xr-x
📄
test_exec_command.py
7.13 KB
10/28/2024 05:59:24 AM
rw-r--r--
📄
test_fcompiler.py
1.25 KB
10/28/2024 05:59:24 AM
rw-r--r--
📄
test_fcompiler_gnu.py
2.09 KB
10/28/2024 05:59:24 AM
rw-r--r--
📄
test_fcompiler_intel.py
1.03 KB
10/28/2024 05:59:24 AM
rw-r--r--
📄
test_fcompiler_nagfor.py
1.08 KB
10/28/2024 05:59:24 AM
rw-r--r--
📄
test_from_template.py
1.08 KB
10/28/2024 05:59:24 AM
rw-r--r--
📄
test_mingw32ccompiler.py
1.57 KB
10/28/2024 05:59:24 AM
rw-r--r--
📄
test_misc_util.py
3.14 KB
10/28/2024 05:59:24 AM
rw-r--r--
📄
test_npy_pkg_config.py
2.5 KB
10/28/2024 05:59:24 AM
rw-r--r--
📄
test_shell_utils.py
1.91 KB
10/28/2024 05:59:24 AM
rw-r--r--
📄
test_system_info.py
9.48 KB
10/28/2024 05:59:24 AM
rw-r--r--
Editing: test_fcompiler_nagfor.py
Close
from numpy.testing import assert_ import numpy.distutils.fcompiler nag_version_strings = [('nagfor', 'NAG Fortran Compiler Release ' '6.2(Chiyoda) Build 6200', '6.2'), ('nagfor', 'NAG Fortran Compiler Release ' '6.1(Tozai) Build 6136', '6.1'), ('nagfor', 'NAG Fortran Compiler Release ' '6.0(Hibiya) Build 1021', '6.0'), ('nagfor', 'NAG Fortran Compiler Release ' '5.3.2(971)', '5.3.2'), ('nag', 'NAGWare Fortran 95 compiler Release 5.1' '(347,355-367,375,380-383,389,394,399,401-402,407,' '431,435,437,446,459-460,463,472,494,496,503,508,' '511,517,529,555,557,565)', '5.1')] class TestNagFCompilerVersions: def test_version_match(self): for comp, vs, version in nag_version_strings: fc = numpy.distutils.fcompiler.new_fcompiler(compiler=comp) v = fc.version_match(vs) assert_(v == version)