diff options
author | yamadafuyuka <yamada.fuyuka@jp.fuijitsu.com> | 2022-12-28 12:59:07 +0900 |
---|---|---|
committer | yamadafuyuka <yamada.fuyuka@jp.fuijitsu.com> | 2023-03-02 17:32:23 +0900 |
commit | fccb005a6c995923d47aeda4e71a1d2a4a07f703 (patch) | |
tree | 3de975cbca65a50a9bb04fc98a63ea971c96251d /numpy/distutils/tests | |
parent | 80d5aeb986a885b8cc43b27839477a15677bcac8 (diff) | |
download | numpy-fccb005a6c995923d47aeda4e71a1d2a4a07f703.tar.gz |
ENH: add support for fujitsu C/C++ compiler and SSL2 to numpy.
Diffstat (limited to 'numpy/distutils/tests')
-rw-r--r-- | numpy/distutils/tests/test_ccompiler_opt.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/numpy/distutils/tests/test_ccompiler_opt.py b/numpy/distutils/tests/test_ccompiler_opt.py index 657ebdb68..a1b780336 100644 --- a/numpy/distutils/tests/test_ccompiler_opt.py +++ b/numpy/distutils/tests/test_ccompiler_opt.py @@ -31,7 +31,7 @@ arch_compilers = dict( ppc64 = ("gcc", "clang"), ppc64le = ("gcc", "clang"), armhf = ("gcc", "clang"), - aarch64 = ("gcc", "clang"), + aarch64 = ("gcc", "clang", "fcc"), s390x = ("gcc", "clang"), noarch = ("gcc",) ) @@ -422,8 +422,8 @@ class _Test_CCompilerOpt: # when option "native" is activated through the args try: self.expect("native", - trap_flags=".*(-march=native|-xHost|/QxHost).*", - x86=".*", ppc64=".*", armhf=".*", s390x=".*" + trap_flags=".*(-march=native|-xHost|/QxHost|-mcpu=a64fx).*", + x86=".*", ppc64=".*", armhf=".*", s390x=".*", aarch64=".*", ) if self.march() != "unknown": raise AssertionError( |