Current Path: > > opt > cloudlinux > venv > lib > python3.11 > > site-packages > numpy > distutils > tests
Operation : Linux premium131.web-hosting.com 4.18.0-553.44.1.lve.el8.x86_64 #1 SMP Thu Mar 13 14:29:12 UTC 2025 x86_64 Software : Apache Server IP : 162.0.232.56 | Your IP: 216.73.216.111 Domains : 1034 Domain(s) Permission : [ 0755 ]
Name | Type | Size | Last Modified | Actions |
---|---|---|---|---|
__pycache__ | Directory | - | - | |
__init__.py | File | 0 bytes | April 17 2025 13:10:58. | |
test_build_ext.py | File | 2769 bytes | April 17 2025 13:10:58. | |
test_ccompiler_opt.py | File | 28778 bytes | April 17 2025 13:10:58. | |
test_ccompiler_opt_conf.py | File | 6347 bytes | April 17 2025 13:10:58. | |
test_exec_command.py | File | 7395 bytes | April 17 2025 13:10:58. | |
test_fcompiler.py | File | 1277 bytes | April 17 2025 13:10:58. | |
test_fcompiler_gnu.py | File | 2136 bytes | April 17 2025 13:10:58. | |
test_fcompiler_intel.py | File | 1058 bytes | April 17 2025 13:10:58. | |
test_fcompiler_nagfor.py | File | 1102 bytes | April 17 2025 13:10:58. | |
test_from_template.py | File | 1103 bytes | April 17 2025 13:10:58. | |
test_log.py | File | 868 bytes | April 17 2025 13:10:58. | |
test_mingw32ccompiler.py | File | 1609 bytes | April 17 2025 13:10:58. | |
test_misc_util.py | File | 3218 bytes | April 17 2025 13:10:58. | |
test_npy_pkg_config.py | File | 2557 bytes | April 17 2025 13:10:58. | |
test_shell_utils.py | File | 2114 bytes | April 17 2025 13:10:58. | |
test_system_info.py | File | 10999 bytes | April 17 2025 13:10:58. |
from numpy.testing import assert_ import numpy.distutils.fcompiler g77_version_strings = [ ('GNU Fortran 0.5.25 20010319 (prerelease)', '0.5.25'), ('GNU Fortran (GCC 3.2) 3.2 20020814 (release)', '3.2'), ('GNU Fortran (GCC) 3.3.3 20040110 (prerelease) (Debian)', '3.3.3'), ('GNU Fortran (GCC) 3.3.3 (Debian 20040401)', '3.3.3'), ('GNU Fortran (GCC 3.2.2 20030222 (Red Hat Linux 3.2.2-5)) 3.2.2' ' 20030222 (Red Hat Linux 3.2.2-5)', '3.2.2'), ] gfortran_version_strings = [ ('GNU Fortran 95 (GCC 4.0.3 20051023 (prerelease) (Debian 4.0.2-3))', '4.0.3'), ('GNU Fortran 95 (GCC) 4.1.0', '4.1.0'), ('GNU Fortran 95 (GCC) 4.2.0 20060218 (experimental)', '4.2.0'), ('GNU Fortran (GCC) 4.3.0 20070316 (experimental)', '4.3.0'), ('GNU Fortran (rubenvb-4.8.0) 4.8.0', '4.8.0'), ('4.8.0', '4.8.0'), ('4.0.3-7', '4.0.3'), ("gfortran: warning: couldn't understand kern.osversion '14.1.0\n4.9.1", '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'), ('GNU Fortran (crosstool-NG 8a21ab48) 7.2.0', '7.2.0') ] class TestG77Versions: def test_g77_version(self): fc = numpy.distutils.fcompiler.new_fcompiler(compiler='gnu') for vs, version in g77_version_strings: v = fc.version_match(vs) assert_(v == version, (vs, v)) def test_not_g77(self): fc = numpy.distutils.fcompiler.new_fcompiler(compiler='gnu') for vs, _ in gfortran_version_strings: v = fc.version_match(vs) assert_(v is None, (vs, v)) class TestGFortranVersions: def test_gfortran_version(self): fc = numpy.distutils.fcompiler.new_fcompiler(compiler='gnu95') for vs, version in gfortran_version_strings: v = fc.version_match(vs) assert_(v == version, (vs, v)) def test_not_gfortran(self): fc = numpy.distutils.fcompiler.new_fcompiler(compiler='gnu95') for vs, _ in g77_version_strings: v = fc.version_match(vs) assert_(v is None, (vs, v))
SILENT KILLER Tool