Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

gh-112301: Enable compiler flags with low performance impact and no warnings#120975

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to ourterms of service andprivacy statement. We’ll occasionally send you account related emails.

Already on GitHub?Sign in to your account

Conversation

@nohlson
Copy link
Contributor

@nohlsonnohlson commentedJun 24, 2024
edited by bedevere-appbot
Loading

This PR enables a few default compiler options in an effort to improve security. The options enabled here are:

-Wimplicit-fallthrough -fstack-protector-strong -fno-strict-overflow -Wtrampolines

These have been found to have little to no pyperformance benchmark impact and don't introduce any new warnings.

The pyperf benchmark for this configuration can be viewed here:https://github.com/faster-cpython/benchmarking-public/tree/main/results/bm-20240620-3.14.0a0-98d9ea0

This will be one of several PRs addressing the issue:#112301

@ghost
Copy link

ghost commentedJun 24, 2024
edited by ghost
Loading

All commit authors signed the Contributor License Agreement.
CLA signed

@bedevere-app
Copy link

Most changes to Pythonrequire a NEWS entry. Add one using theblurb_it web app or theblurb command-line tool.

If this change has little impact on Python users, wait for a maintainer to apply theskip news label instead.

configure.ac Outdated
# These flags should be enabled by default for all builds.
AX_CHECK_COMPILE_FLAG([-Wimplicit-fallthrough],[BASECFLAGS="$BASECFLAGS -Wimplicit-fallthrough"],[AC_MSG_WARN([-Wimplicit-fallthrough not supported])])
AX_CHECK_COMPILE_FLAG([-fstack-protector-strong],[BASECFLAGS="$BASECFLAGS -fstack-protector-strong"],[AC_MSG_WARN([-fstack-protector-strong not supported])])
AX_CHECK_COMPILE_FLAG([-fno-strict-overflow],[BASECFLAGS="$BASECFLAGS -fno-strict-overflow"],[AC_MSG_WARN([-fno-strict-overflow not supported])])
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others.Learn more.

But-fno-strict-overflow is already handled right above, isn't it?

dnl Historically, some of our code assumed that signed integer overflowdnl is defined behaviour via twos-complement.dnl Set STRICT_OVERFLOW_CFLAGS and NO_STRICT_OVERFLOW_CFLAGS depending on compiler support.dnl Pass the latter to modules that depend on such behaviour._SAVE_VAR([CFLAGS])CFLAGS="-fstrict-overflow -fno-strict-overflow"AC_CACHE_CHECK([if $CC supports -fstrict-overflow and -fno-strict-overflow],[ac_cv_cc_supports_fstrict_overflow],AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[]],[[]])],[ac_cv_cc_supports_fstrict_overflow=yes],[ac_cv_cc_supports_fstrict_overflow=no]))_RESTORE_VAR([CFLAGS])AS_VAR_IF([ac_cv_cc_supports_fstrict_overflow],[yes],[STRICT_OVERFLOW_CFLAGS="-fstrict-overflow"           NO_STRICT_OVERFLOW_CFLAGS="-fno-strict-overflow"],[STRICT_OVERFLOW_CFLAGS=""           NO_STRICT_OVERFLOW_CFLAGS=""])AC_MSG_CHECKING([for --with-strict-overflow])AC_ARG_WITH([strict-overflow],AS_HELP_STRING([--with-strict-overflow],[if 'yes', add -fstrict-overflow to CFLAGS, else add -fno-strict-overflow (default is no)]),[AS_VAR_IF([ac_cv_cc_supports_fstrict_overflow],[no],[AC_MSG_WARN([--with-strict-overflow=yes requires a compiler that supports -fstrict-overflow])],[])],[with_strict_overflow=no])AC_MSG_RESULT([$with_strict_overflow])

Copy link
ContributorAuthor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others.Learn more.

Yes that is true. I only checked that it was enabled when compiling and it looks like it is redundant. I have removed my addition

@thesamesam
Copy link
Contributor

thesamesam commentedJun 24, 2024
edited
Loading

I'm also wondering why these 3 specific flags are being done as part of this batch. One is a warning and one is already set.

A warning should never make any runtime difference, although it could impact compile-time speed. It would make sense to do that by itself, I'd say.

@bedevere-app
Copy link

Most changes to Pythonrequire a NEWS entry. Add one using theblurb_it web app or theblurb command-line tool.

If this change has little impact on Python users, wait for a maintainer to apply theskip news label instead.

@nohlson
Copy link
ContributorAuthor

I'm also wondering why these 3 specific flags are being done as part of this batch. One is a warning and one is already set.

A warning should never make any runtime difference, although it could impact compile-time speed. It would make sense to do that by itself, I'd say.

I am investigating enabling options suggested in the OpenSSF guidance for compiler hardening linked in the issue. These options just a few of the suggested options that both don't impact performance and don't generate any new warnings at compile time. Some of the other flags that I am considering enabling either generate warnings or impact pyperf benchmarks and the tradeoff needs to be discussed further before making a decision on those.

@corona10corona10 requested a review frommdboomJune 25, 2024 13:56
Copy link
Member

@corona10corona10 left a comment
edited
Loading

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others.Learn more.

I didn't take a look at it deeply, but if itcosts 3% geometric mean performance overhead, it's not a low-performance impact when considering the efforts of the faster-CPython team.

Why not just provide as the optional flag instead of default option?

@mdboom
Copy link
Contributor

I didn't take a look at it deeply, but if itcosts 3% geometric mean performance overhead, it's not a low-performance impact when considering the efforts of the faster-CPython team.

I think those measurements were for a larger set of changes. The measurement forthis PR shows no measurable change in performance.

nohlson reacted with thumbs up emoji

@eli-schwartz
Copy link
Contributor

This is why as pointed out by@thesamesam, it would make sense to incrementally add different options via separate PRs, so that flags which don't produce different machine code and only activate diagnostics could be easily landed without discussing the performance impact they don't have.

Copy link
Member

@corona10corona10 left a comment
edited
Loading

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others.Learn more.

LGTM, I can not see any side effect, and thank you for cross-checking about the performance issue@mdboom

Copy link
Member

@corona10corona10 left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others.Learn more.

Overall changes lgtm but let's add more explain through the NEWS.d

@@ -0,0 +1 @@
Add default compiler options to improve security
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others.Learn more.

Please list concrete compiler options you added.

Copy link
ContributorAuthor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others.Learn more.

Added options to news file

@bedevere-app
Copy link

A Python core developer has requested some changes be made to your pull request before we can consider merging it. If you could please address their requests along with any other requests in other reviews from core developers that would be appreciated.

Once you have made the requested changes, please leave a comment on this pull request containing the phraseI have made the requested changes; please review again. I will then notify any core developers who have left a review that you're ready for them to take another look at this pull request.

@nohlson
Copy link
ContributorAuthor

I have made the requested changes; please review again

@bedevere-app
Copy link

Thanks for making the requested changes!

@corona10: please review the changes made to this pull request.

@bedevere-appbedevere-appbot requested a review fromcorona10June 25, 2024 21:56
@bedevere-bot
Copy link

⚠️⚠️⚠️ Buildbot failure⚠️⚠️⚠️

Hi! The buildbotARM64 MacOS M1 NoGIL 3.x has failed when building commit7fb32e0.

What do you need to do:

  1. Don't panic.
  2. Checkthe buildbot page in the devguide if you don't know what the buildbots are or how they work.
  3. Go to the page of the buildbot that failed (https://buildbot.python.org/all/#builders/1270/builds/1926) and take a look at the build logs.
  4. Check if the failure is related to this commit (7fb32e0) or if it is a false positive.
  5. If the failure is related to this commit, please, reflect that on the issue and make a new Pull Request with a fix.

You can take a look at the buildbot page here:

https://buildbot.python.org/all/#builders/1270/builds/1926

Failed tests:

  • test_cppext
  • test_cext

Failed subtests:

  • test_build_c11 - test.test_cext.TestExt.test_build_c11
  • test_build - test.test_cppext.TestCPPExt.test_build
  • test_build_cpp03 - test.test_cppext.TestCPPExt.test_build_cpp03
  • test_build - test.test_cext.TestExt.test_build
  • test_build_c99 - test.test_cext.TestExt.test_build_c99
  • test_build_cpp11 - test.test_cppext.TestCPPExt.test_build_cpp11

Summary of the results of the build (if available):

==

Click to see traceback logs
Traceback (most recent call last):  File"/Users/ec2-user/buildbot/buildarea/3.x.itamaro-macos-arm64-aws.macos-with-brew.nogil/build/Lib/test/test_cppext/__init__.py", line29, intest_buildself.check_build('_testcppext')~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^  File"/Users/ec2-user/buildbot/buildarea/3.x.itamaro-macos-arm64-aws.macos-with-brew.nogil/build/Lib/test/test_cppext/__init__.py", line47, incheck_buildself._check_build(extension_name, python_exe,std=std)~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^  File"/Users/ec2-user/buildbot/buildarea/3.x.itamaro-macos-arm64-aws.macos-with-brew.nogil/build/Lib/test/test_cppext/__init__.py", line79, in_check_build    run_cmd('Install', cmd)~~~~~~~^^^^^^^^^^^^^^^^  File"/Users/ec2-user/buildbot/buildarea/3.x.itamaro-macos-arm64-aws.macos-with-brew.nogil/build/Lib/test/test_cppext/__init__.py", line62, inrun_cmd    subprocess.run(cmd,check=True,env=env)~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^  File"/Users/ec2-user/buildbot/buildarea/3.x.itamaro-macos-arm64-aws.macos-with-brew.nogil/build/Lib/subprocess.py", line577, inrunraise CalledProcessError(retcode, process.args,                             output=stdout, stderr=stderr)subprocess.CalledProcessError:Command '['/Users/ec2-user/buildbot/buildarea/3.x.itamaro-macos-arm64-aws.macos-with-brew.nogil/build/build/test_python_33567æ/tempcwd/env/bin/python.exe', '-X', 'dev', '-m', 'pip', 'install', '--no-build-isolation', '/Users/ec2-user/buildbot/buildarea/3.x.itamaro-macos-arm64-aws.macos-with-brew.nogil/build/build/test_python_33567æ/tempcwd/pkg']' returned non-zero exit status 1.Traceback (most recent call last):  File"/Users/ec2-user/buildbot/buildarea/3.x.itamaro-macos-arm64-aws.macos-with-brew.nogil/build/Lib/test/test_cppext/__init__.py", line29, intest_buildself.check_build('_testcppext')~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^  File"/Users/ec2-user/buildbot/buildarea/3.x.itamaro-macos-arm64-aws.macos-with-brew.nogil/build/Lib/test/test_cppext/__init__.py", line47, incheck_buildself._check_build(extension_name, python_exe,std=std)~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^  File"/Users/ec2-user/buildbot/buildarea/3.x.itamaro-macos-arm64-aws.macos-with-brew.nogil/build/Lib/test/test_cppext/__init__.py", line79, in_check_build    run_cmd('Install', cmd)~~~~~~~^^^^^^^^^^^^^^^^  File"/Users/ec2-user/buildbot/buildarea/3.x.itamaro-macos-arm64-aws.macos-with-brew.nogil/build/Lib/test/test_cppext/__init__.py", line62, inrun_cmd    subprocess.run(cmd,check=True,env=env)~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^  File"/Users/ec2-user/buildbot/buildarea/3.x.itamaro-macos-arm64-aws.macos-with-brew.nogil/build/Lib/subprocess.py", line577, inrunraise CalledProcessError(retcode, process.args,                             output=stdout, stderr=stderr)subprocess.CalledProcessError:Command '['/Users/ec2-user/buildbot/buildarea/3.x.itamaro-macos-arm64-aws.macos-with-brew.nogil/build/build/test_python_32550æ/tempcwd/env/bin/python.exe', '-X', 'dev', '-m', 'pip', 'install', '--no-build-isolation', '/Users/ec2-user/buildbot/buildarea/3.x.itamaro-macos-arm64-aws.macos-with-brew.nogil/build/build/test_python_32550æ/tempcwd/pkg']' returned non-zero exit status 1.Traceback (most recent call last):  File"/Users/ec2-user/buildbot/buildarea/3.x.itamaro-macos-arm64-aws.macos-with-brew.nogil/build/Lib/test/test_cext/__init__.py", line41, intest_build_c99self.check_build('_test_c99_cext',std='c99')~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^  File"/Users/ec2-user/buildbot/buildarea/3.x.itamaro-macos-arm64-aws.macos-with-brew.nogil/build/Lib/test/test_cext/__init__.py", line54, incheck_buildself._check_build(extension_name, python_exe,~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^                      std=std, limited=limited)^^^^^^^^^^^^^^^^^^^^^^^^^  File"/Users/ec2-user/buildbot/buildarea/3.x.itamaro-macos-arm64-aws.macos-with-brew.nogil/build/Lib/test/test_cext/__init__.py", line89, in_check_build    run_cmd('Install', cmd)~~~~~~~^^^^^^^^^^^^^^^^  File"/Users/ec2-user/buildbot/buildarea/3.x.itamaro-macos-arm64-aws.macos-with-brew.nogil/build/Lib/test/test_cext/__init__.py", line72, inrun_cmd    subprocess.run(cmd,check=True,env=env)~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^  File"/Users/ec2-user/buildbot/buildarea/3.x.itamaro-macos-arm64-aws.macos-with-brew.nogil/build/Lib/subprocess.py", line577, inrunraise CalledProcessError(retcode, process.args,                             output=stdout, stderr=stderr)subprocess.CalledProcessError:Command '['/Users/ec2-user/buildbot/buildarea/3.x.itamaro-macos-arm64-aws.macos-with-brew.nogil/build/build/test_python_33568æ/tempcwd/env/bin/python.exe', '-X', 'dev', '-m', 'pip', 'install', '--no-build-isolation', '/Users/ec2-user/buildbot/buildarea/3.x.itamaro-macos-arm64-aws.macos-with-brew.nogil/build/build/test_python_33568æ/tempcwd/pkg']' returned non-zero exit status 1.Traceback (most recent call last):  File"/Users/ec2-user/buildbot/buildarea/3.x.itamaro-macos-arm64-aws.macos-with-brew.nogil/build/Lib/test/test_cppext/__init__.py", line32, intest_build_cpp03self.check_build('_testcpp03ext',std='c++03')~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^  File"/Users/ec2-user/buildbot/buildarea/3.x.itamaro-macos-arm64-aws.macos-with-brew.nogil/build/Lib/test/test_cppext/__init__.py", line47, incheck_buildself._check_build(extension_name, python_exe,std=std)~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^  File"/Users/ec2-user/buildbot/buildarea/3.x.itamaro-macos-arm64-aws.macos-with-brew.nogil/build/Lib/test/test_cppext/__init__.py", line79, in_check_build    run_cmd('Install', cmd)~~~~~~~^^^^^^^^^^^^^^^^  File"/Users/ec2-user/buildbot/buildarea/3.x.itamaro-macos-arm64-aws.macos-with-brew.nogil/build/Lib/test/test_cppext/__init__.py", line62, inrun_cmd    subprocess.run(cmd,check=True,env=env)~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^  File"/Users/ec2-user/buildbot/buildarea/3.x.itamaro-macos-arm64-aws.macos-with-brew.nogil/build/Lib/subprocess.py", line577, inrunraise CalledProcessError(retcode, process.args,                             output=stdout, stderr=stderr)subprocess.CalledProcessError:Command '['/Users/ec2-user/buildbot/buildarea/3.x.itamaro-macos-arm64-aws.macos-with-brew.nogil/build/build/test_python_33567æ/tempcwd/env/bin/python.exe', '-X', 'dev', '-m', 'pip', 'install', '--no-build-isolation', '/Users/ec2-user/buildbot/buildarea/3.x.itamaro-macos-arm64-aws.macos-with-brew.nogil/build/build/test_python_33567æ/tempcwd/pkg']' returned non-zero exit status 1.Traceback (most recent call last):  File"/Users/ec2-user/buildbot/buildarea/3.x.itamaro-macos-arm64-aws.macos-with-brew.nogil/build/Lib/test/test_cext/__init__.py", line37, intest_build_c11self.check_build('_test_c11_cext',std='c11')~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^  File"/Users/ec2-user/buildbot/buildarea/3.x.itamaro-macos-arm64-aws.macos-with-brew.nogil/build/Lib/test/test_cext/__init__.py", line54, incheck_buildself._check_build(extension_name, python_exe,~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^                      std=std, limited=limited)^^^^^^^^^^^^^^^^^^^^^^^^^  File"/Users/ec2-user/buildbot/buildarea/3.x.itamaro-macos-arm64-aws.macos-with-brew.nogil/build/Lib/test/test_cext/__init__.py", line89, in_check_build    run_cmd('Install', cmd)~~~~~~~^^^^^^^^^^^^^^^^  File"/Users/ec2-user/buildbot/buildarea/3.x.itamaro-macos-arm64-aws.macos-with-brew.nogil/build/Lib/test/test_cext/__init__.py", line72, inrun_cmd    subprocess.run(cmd,check=True,env=env)~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^  File"/Users/ec2-user/buildbot/buildarea/3.x.itamaro-macos-arm64-aws.macos-with-brew.nogil/build/Lib/subprocess.py", line577, inrunraise CalledProcessError(retcode, process.args,                             output=stdout, stderr=stderr)subprocess.CalledProcessError:Command '['/Users/ec2-user/buildbot/buildarea/3.x.itamaro-macos-arm64-aws.macos-with-brew.nogil/build/build/test_python_33568æ/tempcwd/env/bin/python.exe', '-X', 'dev', '-m', 'pip', 'install', '--no-build-isolation', '/Users/ec2-user/buildbot/buildarea/3.x.itamaro-macos-arm64-aws.macos-with-brew.nogil/build/build/test_python_33568æ/tempcwd/pkg']' returned non-zero exit status 1.Traceback (most recent call last):  File"/Users/ec2-user/buildbot/buildarea/3.x.itamaro-macos-arm64-aws.macos-with-brew.nogil/build/Lib/test/test_cppext/__init__.py", line36, intest_build_cpp11self.check_build('_testcpp11ext',std='c++11')~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^  File"/Users/ec2-user/buildbot/buildarea/3.x.itamaro-macos-arm64-aws.macos-with-brew.nogil/build/Lib/test/test_cppext/__init__.py", line47, incheck_buildself._check_build(extension_name, python_exe,std=std)~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^  File"/Users/ec2-user/buildbot/buildarea/3.x.itamaro-macos-arm64-aws.macos-with-brew.nogil/build/Lib/test/test_cppext/__init__.py", line79, in_check_build    run_cmd('Install', cmd)~~~~~~~^^^^^^^^^^^^^^^^  File"/Users/ec2-user/buildbot/buildarea/3.x.itamaro-macos-arm64-aws.macos-with-brew.nogil/build/Lib/test/test_cppext/__init__.py", line62, inrun_cmd    subprocess.run(cmd,check=True,env=env)~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^  File"/Users/ec2-user/buildbot/buildarea/3.x.itamaro-macos-arm64-aws.macos-with-brew.nogil/build/Lib/subprocess.py", line577, inrunraise CalledProcessError(retcode, process.args,                             output=stdout, stderr=stderr)subprocess.CalledProcessError:Command '['/Users/ec2-user/buildbot/buildarea/3.x.itamaro-macos-arm64-aws.macos-with-brew.nogil/build/build/test_python_33567æ/tempcwd/env/bin/python.exe', '-X', 'dev', '-m', 'pip', 'install', '--no-build-isolation', '/Users/ec2-user/buildbot/buildarea/3.x.itamaro-macos-arm64-aws.macos-with-brew.nogil/build/build/test_python_33567æ/tempcwd/pkg']' returned non-zero exit status 1.Traceback (most recent call last):  File"/Users/ec2-user/buildbot/buildarea/3.x.itamaro-macos-arm64-aws.macos-with-brew.nogil/build/Lib/test/test_cext/__init__.py", line41, intest_build_c99self.check_build('_test_c99_cext',std='c99')~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^  File"/Users/ec2-user/buildbot/buildarea/3.x.itamaro-macos-arm64-aws.macos-with-brew.nogil/build/Lib/test/test_cext/__init__.py", line54, incheck_buildself._check_build(extension_name, python_exe,~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^                      std=std, limited=limited)^^^^^^^^^^^^^^^^^^^^^^^^^  File"/Users/ec2-user/buildbot/buildarea/3.x.itamaro-macos-arm64-aws.macos-with-brew.nogil/build/Lib/test/test_cext/__init__.py", line89, in_check_build    run_cmd('Install', cmd)~~~~~~~^^^^^^^^^^^^^^^^  File"/Users/ec2-user/buildbot/buildarea/3.x.itamaro-macos-arm64-aws.macos-with-brew.nogil/build/Lib/test/test_cext/__init__.py", line72, inrun_cmd    subprocess.run(cmd,check=True,env=env)~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^  File"/Users/ec2-user/buildbot/buildarea/3.x.itamaro-macos-arm64-aws.macos-with-brew.nogil/build/Lib/subprocess.py", line577, inrunraise CalledProcessError(retcode, process.args,                             output=stdout, stderr=stderr)subprocess.CalledProcessError:Command '['/Users/ec2-user/buildbot/buildarea/3.x.itamaro-macos-arm64-aws.macos-with-brew.nogil/build/build/test_python_32679æ/tempcwd/env/bin/python.exe', '-X', 'dev', '-m', 'pip', 'install', '--no-build-isolation', '/Users/ec2-user/buildbot/buildarea/3.x.itamaro-macos-arm64-aws.macos-with-brew.nogil/build/build/test_python_32679æ/tempcwd/pkg']' returned non-zero exit status 1.Traceback (most recent call last):  File"/Users/ec2-user/buildbot/buildarea/3.x.itamaro-macos-arm64-aws.macos-with-brew.nogil/build/Lib/test/test_cext/__init__.py", line34, intest_buildself.check_build('_test_cext')~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^  File"/Users/ec2-user/buildbot/buildarea/3.x.itamaro-macos-arm64-aws.macos-with-brew.nogil/build/Lib/test/test_cext/__init__.py", line54, incheck_buildself._check_build(extension_name, python_exe,~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^                      std=std, limited=limited)^^^^^^^^^^^^^^^^^^^^^^^^^  File"/Users/ec2-user/buildbot/buildarea/3.x.itamaro-macos-arm64-aws.macos-with-brew.nogil/build/Lib/test/test_cext/__init__.py", line89, in_check_build    run_cmd('Install', cmd)~~~~~~~^^^^^^^^^^^^^^^^  File"/Users/ec2-user/buildbot/buildarea/3.x.itamaro-macos-arm64-aws.macos-with-brew.nogil/build/Lib/test/test_cext/__init__.py", line72, inrun_cmd    subprocess.run(cmd,check=True,env=env)~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^  File"/Users/ec2-user/buildbot/buildarea/3.x.itamaro-macos-arm64-aws.macos-with-brew.nogil/build/Lib/subprocess.py", line577, inrunraise CalledProcessError(retcode, process.args,                             output=stdout, stderr=stderr)subprocess.CalledProcessError:Command '['/Users/ec2-user/buildbot/buildarea/3.x.itamaro-macos-arm64-aws.macos-with-brew.nogil/build/build/test_python_33568æ/tempcwd/env/bin/python.exe', '-X', 'dev', '-m', 'pip', 'install', '--no-build-isolation', '/Users/ec2-user/buildbot/buildarea/3.x.itamaro-macos-arm64-aws.macos-with-brew.nogil/build/build/test_python_33568æ/tempcwd/pkg']' returned non-zero exit status 1.Traceback (most recent call last):  File"/Users/ec2-user/buildbot/buildarea/3.x.itamaro-macos-arm64-aws.macos-with-brew.nogil/build/Lib/test/test_cext/__init__.py", line34, intest_buildself.check_build('_test_cext')~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^  File"/Users/ec2-user/buildbot/buildarea/3.x.itamaro-macos-arm64-aws.macos-with-brew.nogil/build/Lib/test/test_cext/__init__.py", line54, incheck_buildself._check_build(extension_name, python_exe,~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^                      std=std, limited=limited)^^^^^^^^^^^^^^^^^^^^^^^^^  File"/Users/ec2-user/buildbot/buildarea/3.x.itamaro-macos-arm64-aws.macos-with-brew.nogil/build/Lib/test/test_cext/__init__.py", line89, in_check_build    run_cmd('Install', cmd)~~~~~~~^^^^^^^^^^^^^^^^  File"/Users/ec2-user/buildbot/buildarea/3.x.itamaro-macos-arm64-aws.macos-with-brew.nogil/build/Lib/test/test_cext/__init__.py", line72, inrun_cmd    subprocess.run(cmd,check=True,env=env)~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^  File"/Users/ec2-user/buildbot/buildarea/3.x.itamaro-macos-arm64-aws.macos-with-brew.nogil/build/Lib/subprocess.py", line577, inrunraise CalledProcessError(retcode, process.args,                             output=stdout, stderr=stderr)subprocess.CalledProcessError:Command '['/Users/ec2-user/buildbot/buildarea/3.x.itamaro-macos-arm64-aws.macos-with-brew.nogil/build/build/test_python_32679æ/tempcwd/env/bin/python.exe', '-X', 'dev', '-m', 'pip', 'install', '--no-build-isolation', '/Users/ec2-user/buildbot/buildarea/3.x.itamaro-macos-arm64-aws.macos-with-brew.nogil/build/build/test_python_32679æ/tempcwd/pkg']' returned non-zero exit status 1.Traceback (most recent call last):  File"/Users/ec2-user/buildbot/buildarea/3.x.itamaro-macos-arm64-aws.macos-with-brew.nogil/build/Lib/test/test_cppext/__init__.py", line32, intest_build_cpp03self.check_build('_testcpp03ext',std='c++03')~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^  File"/Users/ec2-user/buildbot/buildarea/3.x.itamaro-macos-arm64-aws.macos-with-brew.nogil/build/Lib/test/test_cppext/__init__.py", line47, incheck_buildself._check_build(extension_name, python_exe,std=std)~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^  File"/Users/ec2-user/buildbot/buildarea/3.x.itamaro-macos-arm64-aws.macos-with-brew.nogil/build/Lib/test/test_cppext/__init__.py", line79, in_check_build    run_cmd('Install', cmd)~~~~~~~^^^^^^^^^^^^^^^^  File"/Users/ec2-user/buildbot/buildarea/3.x.itamaro-macos-arm64-aws.macos-with-brew.nogil/build/Lib/test/test_cppext/__init__.py", line62, inrun_cmd    subprocess.run(cmd,check=True,env=env)~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^  File"/Users/ec2-user/buildbot/buildarea/3.x.itamaro-macos-arm64-aws.macos-with-brew.nogil/build/Lib/subprocess.py", line577, inrunraise CalledProcessError(retcode, process.args,                             output=stdout, stderr=stderr)subprocess.CalledProcessError:Command '['/Users/ec2-user/buildbot/buildarea/3.x.itamaro-macos-arm64-aws.macos-with-brew.nogil/build/build/test_python_32550æ/tempcwd/env/bin/python.exe', '-X', 'dev', '-m', 'pip', 'install', '--no-build-isolation', '/Users/ec2-user/buildbot/buildarea/3.x.itamaro-macos-arm64-aws.macos-with-brew.nogil/build/build/test_python_32550æ/tempcwd/pkg']' returned non-zero exit status 1.Traceback (most recent call last):  File"/Users/ec2-user/buildbot/buildarea/3.x.itamaro-macos-arm64-aws.macos-with-brew.nogil/build/Lib/test/test_cext/__init__.py", line37, intest_build_c11self.check_build('_test_c11_cext',std='c11')~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^  File"/Users/ec2-user/buildbot/buildarea/3.x.itamaro-macos-arm64-aws.macos-with-brew.nogil/build/Lib/test/test_cext/__init__.py", line54, incheck_buildself._check_build(extension_name, python_exe,~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^                      std=std, limited=limited)^^^^^^^^^^^^^^^^^^^^^^^^^  File"/Users/ec2-user/buildbot/buildarea/3.x.itamaro-macos-arm64-aws.macos-with-brew.nogil/build/Lib/test/test_cext/__init__.py", line89, in_check_build    run_cmd('Install', cmd)~~~~~~~^^^^^^^^^^^^^^^^  File"/Users/ec2-user/buildbot/buildarea/3.x.itamaro-macos-arm64-aws.macos-with-brew.nogil/build/Lib/test/test_cext/__init__.py", line72, inrun_cmd    subprocess.run(cmd,check=True,env=env)~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^  File"/Users/ec2-user/buildbot/buildarea/3.x.itamaro-macos-arm64-aws.macos-with-brew.nogil/build/Lib/subprocess.py", line577, inrunraise CalledProcessError(retcode, process.args,                             output=stdout, stderr=stderr)subprocess.CalledProcessError:Command '['/Users/ec2-user/buildbot/buildarea/3.x.itamaro-macos-arm64-aws.macos-with-brew.nogil/build/build/test_python_32679æ/tempcwd/env/bin/python.exe', '-X', 'dev', '-m', 'pip', 'install', '--no-build-isolation', '/Users/ec2-user/buildbot/buildarea/3.x.itamaro-macos-arm64-aws.macos-with-brew.nogil/build/build/test_python_32679æ/tempcwd/pkg']' returned non-zero exit status 1.Traceback (most recent call last):  File"/Users/ec2-user/buildbot/buildarea/3.x.itamaro-macos-arm64-aws.macos-with-brew.nogil/build/Lib/test/test_cppext/__init__.py", line36, intest_build_cpp11self.check_build('_testcpp11ext',std='c++11')~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^  File"/Users/ec2-user/buildbot/buildarea/3.x.itamaro-macos-arm64-aws.macos-with-brew.nogil/build/Lib/test/test_cppext/__init__.py", line47, incheck_buildself._check_build(extension_name, python_exe,std=std)~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^  File"/Users/ec2-user/buildbot/buildarea/3.x.itamaro-macos-arm64-aws.macos-with-brew.nogil/build/Lib/test/test_cppext/__init__.py", line79, in_check_build    run_cmd('Install', cmd)~~~~~~~^^^^^^^^^^^^^^^^  File"/Users/ec2-user/buildbot/buildarea/3.x.itamaro-macos-arm64-aws.macos-with-brew.nogil/build/Lib/test/test_cppext/__init__.py", line62, inrun_cmd    subprocess.run(cmd,check=True,env=env)~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^  File"/Users/ec2-user/buildbot/buildarea/3.x.itamaro-macos-arm64-aws.macos-with-brew.nogil/build/Lib/subprocess.py", line577, inrunraise CalledProcessError(retcode, process.args,                             output=stdout, stderr=stderr)subprocess.CalledProcessError:Command '['/Users/ec2-user/buildbot/buildarea/3.x.itamaro-macos-arm64-aws.macos-with-brew.nogil/build/build/test_python_32550æ/tempcwd/env/bin/python.exe', '-X', 'dev', '-m', 'pip', 'install', '--no-build-isolation', '/Users/ec2-user/buildbot/buildarea/3.x.itamaro-macos-arm64-aws.macos-with-brew.nogil/build/build/test_python_32550æ/tempcwd/pkg']' returned non-zero exit status 1.

@bedevere-bot
Copy link

⚠️⚠️⚠️ Buildbot failure⚠️⚠️⚠️

Hi! The buildbotARM64 macOS 3.x has failed when building commit7fb32e0.

What do you need to do:

  1. Don't panic.
  2. Checkthe buildbot page in the devguide if you don't know what the buildbots are or how they work.
  3. Go to the page of the buildbot that failed (https://buildbot.python.org/all/#builders/725/builds/8336) and take a look at the build logs.
  4. Check if the failure is related to this commit (7fb32e0) or if it is a false positive.
  5. If the failure is related to this commit, please, reflect that on the issue and make a new Pull Request with a fix.

You can take a look at the buildbot page here:

https://buildbot.python.org/all/#builders/725/builds/8336

Failed tests:

  • test_cppext
  • test_ssl
  • test_cext

Failed subtests:

  • test_build_c11 - test.test_cext.TestExt.test_build_c11
  • test_build_limited - test.test_cext.TestExt.test_build_limited
  • test_build - test.test_cppext.TestCPPExt.test_build
  • test_build_cpp03 - test.test_cppext.TestCPPExt.test_build_cpp03
  • test_preauth_data_to_tls_server - test.test_ssl.TestPreHandshakeClose.test_preauth_data_to_tls_server
  • test_build - test.test_cext.TestExt.test_build
  • test_build_c99 - test.test_cext.TestExt.test_build_c99
  • test_build_limited_c11 - test.test_cext.TestExt.test_build_limited_c11
  • test_build_cpp11 - test.test_cppext.TestCPPExt.test_build_cpp11

Summary of the results of the build (if available):

==

Click to see traceback logs
Traceback (most recent call last):  File"/Users/buildbot/buildarea/3.x.pablogsal-macos-m1.macos-with-brew/build/Lib/test/test_cext/__init__.py", line45, intest_build_limitedself.check_build('_test_limited_cext',limited=True)~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^  File"/Users/buildbot/buildarea/3.x.pablogsal-macos-m1.macos-with-brew/build/Lib/test/test_cext/__init__.py", line54, incheck_buildself._check_build(extension_name, python_exe,~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^                      std=std, limited=limited)^^^^^^^^^^^^^^^^^^^^^^^^^  File"/Users/buildbot/buildarea/3.x.pablogsal-macos-m1.macos-with-brew/build/Lib/test/test_cext/__init__.py", line89, in_check_build    run_cmd('Install', cmd)~~~~~~~^^^^^^^^^^^^^^^^  File"/Users/buildbot/buildarea/3.x.pablogsal-macos-m1.macos-with-brew/build/Lib/test/test_cext/__init__.py", line72, inrun_cmd    subprocess.run(cmd,check=True,env=env)~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^  File"/Users/buildbot/buildarea/3.x.pablogsal-macos-m1.macos-with-brew/build/Lib/subprocess.py", line577, inrunraise CalledProcessError(retcode, process.args,                             output=stdout, stderr=stderr)subprocess.CalledProcessError:Command '['/Users/buildbot/buildarea/3.x.pablogsal-macos-m1.macos-with-brew/build/build/test_python_52960æ/tempcwd/env/bin/python.exe', '-X', 'dev', '-m', 'pip', 'install', '--no-build-isolation', '/Users/buildbot/buildarea/3.x.pablogsal-macos-m1.macos-with-brew/build/build/test_python_52960æ/tempcwd/pkg']' returned non-zero exit status 1.Traceback (most recent call last):  File"/Users/buildbot/buildarea/3.x.pablogsal-macos-m1.macos-with-brew/build/Lib/test/test_cext/__init__.py", line41, intest_build_c99self.check_build('_test_c99_cext',std='c99')~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^  File"/Users/buildbot/buildarea/3.x.pablogsal-macos-m1.macos-with-brew/build/Lib/test/test_cext/__init__.py", line54, incheck_buildself._check_build(extension_name, python_exe,~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^                      std=std, limited=limited)^^^^^^^^^^^^^^^^^^^^^^^^^  File"/Users/buildbot/buildarea/3.x.pablogsal-macos-m1.macos-with-brew/build/Lib/test/test_cext/__init__.py", line89, in_check_build    run_cmd('Install', cmd)~~~~~~~^^^^^^^^^^^^^^^^  File"/Users/buildbot/buildarea/3.x.pablogsal-macos-m1.macos-with-brew/build/Lib/test/test_cext/__init__.py", line72, inrun_cmd    subprocess.run(cmd,check=True,env=env)~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^  File"/Users/buildbot/buildarea/3.x.pablogsal-macos-m1.macos-with-brew/build/Lib/subprocess.py", line577, inrunraise CalledProcessError(retcode, process.args,                             output=stdout, stderr=stderr)subprocess.CalledProcessError:Command '['/Users/buildbot/buildarea/3.x.pablogsal-macos-m1.macos-with-brew/build/build/test_python_49638æ/tempcwd/env/bin/python.exe', '-X', 'dev', '-m', 'pip', 'install', '--no-build-isolation', '/Users/buildbot/buildarea/3.x.pablogsal-macos-m1.macos-with-brew/build/build/test_python_49638æ/tempcwd/pkg']' returned non-zero exit status 1.Traceback (most recent call last):  File"/Users/buildbot/buildarea/3.x.pablogsal-macos-m1.macos-with-brew/build/Lib/test/test_cext/__init__.py", line49, intest_build_limited_c11self.check_build('_test_limited_c11_cext',limited=True,std='c11')~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^  File"/Users/buildbot/buildarea/3.x.pablogsal-macos-m1.macos-with-brew/build/Lib/test/test_cext/__init__.py", line54, incheck_buildself._check_build(extension_name, python_exe,~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^                      std=std, limited=limited)^^^^^^^^^^^^^^^^^^^^^^^^^  File"/Users/buildbot/buildarea/3.x.pablogsal-macos-m1.macos-with-brew/build/Lib/test/test_cext/__init__.py", line89, in_check_build    run_cmd('Install', cmd)~~~~~~~^^^^^^^^^^^^^^^^  File"/Users/buildbot/buildarea/3.x.pablogsal-macos-m1.macos-with-brew/build/Lib/test/test_cext/__init__.py", line72, inrun_cmd    subprocess.run(cmd,check=True,env=env)~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^  File"/Users/buildbot/buildarea/3.x.pablogsal-macos-m1.macos-with-brew/build/Lib/subprocess.py", line577, inrunraise CalledProcessError(retcode, process.args,                             output=stdout, stderr=stderr)subprocess.CalledProcessError:Command '['/Users/buildbot/buildarea/3.x.pablogsal-macos-m1.macos-with-brew/build/build/test_python_52960æ/tempcwd/env/bin/python.exe', '-X', 'dev', '-m', 'pip', 'install', '--no-build-isolation', '/Users/buildbot/buildarea/3.x.pablogsal-macos-m1.macos-with-brew/build/build/test_python_52960æ/tempcwd/pkg']' returned non-zero exit status 1.Traceback (most recent call last):  File"/Users/buildbot/buildarea/3.x.pablogsal-macos-m1.macos-with-brew/build/Lib/test/test_cext/__init__.py", line34, intest_buildself.check_build('_test_cext')~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^  File"/Users/buildbot/buildarea/3.x.pablogsal-macos-m1.macos-with-brew/build/Lib/test/test_cext/__init__.py", line54, incheck_buildself._check_build(extension_name, python_exe,~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^                      std=std, limited=limited)^^^^^^^^^^^^^^^^^^^^^^^^^  File"/Users/buildbot/buildarea/3.x.pablogsal-macos-m1.macos-with-brew/build/Lib/test/test_cext/__init__.py", line89, in_check_build    run_cmd('Install', cmd)~~~~~~~^^^^^^^^^^^^^^^^  File"/Users/buildbot/buildarea/3.x.pablogsal-macos-m1.macos-with-brew/build/Lib/test/test_cext/__init__.py", line72, inrun_cmd    subprocess.run(cmd,check=True,env=env)~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^  File"/Users/buildbot/buildarea/3.x.pablogsal-macos-m1.macos-with-brew/build/Lib/subprocess.py", line577, inrunraise CalledProcessError(retcode, process.args,                             output=stdout, stderr=stderr)subprocess.CalledProcessError:Command '['/Users/buildbot/buildarea/3.x.pablogsal-macos-m1.macos-with-brew/build/build/test_python_49638æ/tempcwd/env/bin/python.exe', '-X', 'dev', '-m', 'pip', 'install', '--no-build-isolation', '/Users/buildbot/buildarea/3.x.pablogsal-macos-m1.macos-with-brew/build/build/test_python_49638æ/tempcwd/pkg']' returned non-zero exit status 1.Traceback (most recent call last):  File"/Users/buildbot/buildarea/3.x.pablogsal-macos-m1.macos-with-brew/build/Lib/test/test_cext/__init__.py", line49, intest_build_limited_c11self.check_build('_test_limited_c11_cext',limited=True,std='c11')~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^  File"/Users/buildbot/buildarea/3.x.pablogsal-macos-m1.macos-with-brew/build/Lib/test/test_cext/__init__.py", line54, incheck_buildself._check_build(extension_name, python_exe,~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^                      std=std, limited=limited)^^^^^^^^^^^^^^^^^^^^^^^^^  File"/Users/buildbot/buildarea/3.x.pablogsal-macos-m1.macos-with-brew/build/Lib/test/test_cext/__init__.py", line89, in_check_build    run_cmd('Install', cmd)~~~~~~~^^^^^^^^^^^^^^^^  File"/Users/buildbot/buildarea/3.x.pablogsal-macos-m1.macos-with-brew/build/Lib/test/test_cext/__init__.py", line72, inrun_cmd    subprocess.run(cmd,check=True,env=env)~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^  File"/Users/buildbot/buildarea/3.x.pablogsal-macos-m1.macos-with-brew/build/Lib/subprocess.py", line577, inrunraise CalledProcessError(retcode, process.args,                             output=stdout, stderr=stderr)subprocess.CalledProcessError:Command '['/Users/buildbot/buildarea/3.x.pablogsal-macos-m1.macos-with-brew/build/build/test_python_49638æ/tempcwd/env/bin/python.exe', '-X', 'dev', '-m', 'pip', 'install', '--no-build-isolation', '/Users/buildbot/buildarea/3.x.pablogsal-macos-m1.macos-with-brew/build/build/test_python_49638æ/tempcwd/pkg']' returned non-zero exit status 1.Traceback (most recent call last):  File"/Users/buildbot/buildarea/3.x.pablogsal-macos-m1.macos-with-brew/build/Lib/test/test_ssl.py", line5025, intest_preauth_data_to_tls_serverself.non_linux_skip_if_other_okay_error(wrap_error)~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^  File"/Users/buildbot/buildarea/3.x.pablogsal-macos-m1.macos-with-brew/build/Lib/test/test_ssl.py", line4972, innon_linux_skip_if_other_okay_error    re.search('wrong.version.number',getattr(err,"reason",""), re.I)):~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^  File"/Users/buildbot/buildarea/3.x.pablogsal-macos-m1.macos-with-brew/build/Lib/re/__init__.py", line177, insearchreturn _compile(pattern, flags).search(string)~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^TypeError:expected string or bytes-like object, got 'NoneType'Traceback (most recent call last):  File"/Users/buildbot/buildarea/3.x.pablogsal-macos-m1.macos-with-brew/build/Lib/test/test_cppext/__init__.py", line32, intest_build_cpp03self.check_build('_testcpp03ext',std='c++03')~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^  File"/Users/buildbot/buildarea/3.x.pablogsal-macos-m1.macos-with-brew/build/Lib/test/test_cppext/__init__.py", line47, incheck_buildself._check_build(extension_name, python_exe,std=std)~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^  File"/Users/buildbot/buildarea/3.x.pablogsal-macos-m1.macos-with-brew/build/Lib/test/test_cppext/__init__.py", line79, in_check_build    run_cmd('Install', cmd)~~~~~~~^^^^^^^^^^^^^^^^  File"/Users/buildbot/buildarea/3.x.pablogsal-macos-m1.macos-with-brew/build/Lib/test/test_cppext/__init__.py", line62, inrun_cmd    subprocess.run(cmd,check=True,env=env)~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^  File"/Users/buildbot/buildarea/3.x.pablogsal-macos-m1.macos-with-brew/build/Lib/subprocess.py", line577, inrunraise CalledProcessError(retcode, process.args,                             output=stdout, stderr=stderr)subprocess.CalledProcessError:Command '['/Users/buildbot/buildarea/3.x.pablogsal-macos-m1.macos-with-brew/build/build/test_python_49136æ/tempcwd/env/bin/python.exe', '-X', 'dev', '-m', 'pip', 'install', '--no-build-isolation', '/Users/buildbot/buildarea/3.x.pablogsal-macos-m1.macos-with-brew/build/build/test_python_49136æ/tempcwd/pkg']' returned non-zero exit status 1.Traceback (most recent call last):  File"/Users/buildbot/buildarea/3.x.pablogsal-macos-m1.macos-with-brew/build/Lib/test/test_cext/__init__.py", line37, intest_build_c11self.check_build('_test_c11_cext',std='c11')~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^  File"/Users/buildbot/buildarea/3.x.pablogsal-macos-m1.macos-with-brew/build/Lib/test/test_cext/__init__.py", line54, incheck_buildself._check_build(extension_name, python_exe,~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^                      std=std, limited=limited)^^^^^^^^^^^^^^^^^^^^^^^^^  File"/Users/buildbot/buildarea/3.x.pablogsal-macos-m1.macos-with-brew/build/Lib/test/test_cext/__init__.py", line89, in_check_build    run_cmd('Install', cmd)~~~~~~~^^^^^^^^^^^^^^^^  File"/Users/buildbot/buildarea/3.x.pablogsal-macos-m1.macos-with-brew/build/Lib/test/test_cext/__init__.py", line72, inrun_cmd    subprocess.run(cmd,check=True,env=env)~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^  File"/Users/buildbot/buildarea/3.x.pablogsal-macos-m1.macos-with-brew/build/Lib/subprocess.py", line577, inrunraise CalledProcessError(retcode, process.args,                             output=stdout, stderr=stderr)subprocess.CalledProcessError:Command '['/Users/buildbot/buildarea/3.x.pablogsal-macos-m1.macos-with-brew/build/build/test_python_52960æ/tempcwd/env/bin/python.exe', '-X', 'dev', '-m', 'pip', 'install', '--no-build-isolation', '/Users/buildbot/buildarea/3.x.pablogsal-macos-m1.macos-with-brew/build/build/test_python_52960æ/tempcwd/pkg']' returned non-zero exit status 1.Traceback (most recent call last):  File"/Users/buildbot/buildarea/3.x.pablogsal-macos-m1.macos-with-brew/build/Lib/test/test_cext/__init__.py", line45, intest_build_limitedself.check_build('_test_limited_cext',limited=True)~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^  File"/Users/buildbot/buildarea/3.x.pablogsal-macos-m1.macos-with-brew/build/Lib/test/test_cext/__init__.py", line54, incheck_buildself._check_build(extension_name, python_exe,~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^                      std=std, limited=limited)^^^^^^^^^^^^^^^^^^^^^^^^^  File"/Users/buildbot/buildarea/3.x.pablogsal-macos-m1.macos-with-brew/build/Lib/test/test_cext/__init__.py", line89, in_check_build    run_cmd('Install', cmd)~~~~~~~^^^^^^^^^^^^^^^^  File"/Users/buildbot/buildarea/3.x.pablogsal-macos-m1.macos-with-brew/build/Lib/test/test_cext/__init__.py", line72, inrun_cmd    subprocess.run(cmd,check=True,env=env)~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^  File"/Users/buildbot/buildarea/3.x.pablogsal-macos-m1.macos-with-brew/build/Lib/subprocess.py", line577, inrunraise CalledProcessError(retcode, process.args,                             output=stdout, stderr=stderr)subprocess.CalledProcessError:Command '['/Users/buildbot/buildarea/3.x.pablogsal-macos-m1.macos-with-brew/build/build/test_python_49638æ/tempcwd/env/bin/python.exe', '-X', 'dev', '-m', 'pip', 'install', '--no-build-isolation', '/Users/buildbot/buildarea/3.x.pablogsal-macos-m1.macos-with-brew/build/build/test_python_49638æ/tempcwd/pkg']' returned non-zero exit status 1.Traceback (most recent call last):  File"/Users/buildbot/buildarea/3.x.pablogsal-macos-m1.macos-with-brew/build/Lib/test/test_cppext/__init__.py", line29, intest_buildself.check_build('_testcppext')~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^  File"/Users/buildbot/buildarea/3.x.pablogsal-macos-m1.macos-with-brew/build/Lib/test/test_cppext/__init__.py", line47, incheck_buildself._check_build(extension_name, python_exe,std=std)~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^  File"/Users/buildbot/buildarea/3.x.pablogsal-macos-m1.macos-with-brew/build/Lib/test/test_cppext/__init__.py", line79, in_check_build    run_cmd('Install', cmd)~~~~~~~^^^^^^^^^^^^^^^^  File"/Users/buildbot/buildarea/3.x.pablogsal-macos-m1.macos-with-brew/build/Lib/test/test_cppext/__init__.py", line62, inrun_cmd    subprocess.run(cmd,check=True,env=env)~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^  File"/Users/buildbot/buildarea/3.x.pablogsal-macos-m1.macos-with-brew/build/Lib/subprocess.py", line577, inrunraise CalledProcessError(retcode, process.args,                             output=stdout, stderr=stderr)subprocess.CalledProcessError:Command '['/Users/buildbot/buildarea/3.x.pablogsal-macos-m1.macos-with-brew/build/build/test_python_49136æ/tempcwd/env/bin/python.exe', '-X', 'dev', '-m', 'pip', 'install', '--no-build-isolation', '/Users/buildbot/buildarea/3.x.pablogsal-macos-m1.macos-with-brew/build/build/test_python_49136æ/tempcwd/pkg']' returned non-zero exit status 1.Traceback (most recent call last):  File"/Users/buildbot/buildarea/3.x.pablogsal-macos-m1.macos-with-brew/build/Lib/test/test_cppext/__init__.py", line29, intest_buildself.check_build('_testcppext')~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^  File"/Users/buildbot/buildarea/3.x.pablogsal-macos-m1.macos-with-brew/build/Lib/test/test_cppext/__init__.py", line47, incheck_buildself._check_build(extension_name, python_exe,std=std)~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^  File"/Users/buildbot/buildarea/3.x.pablogsal-macos-m1.macos-with-brew/build/Lib/test/test_cppext/__init__.py", line79, in_check_build    run_cmd('Install', cmd)~~~~~~~^^^^^^^^^^^^^^^^  File"/Users/buildbot/buildarea/3.x.pablogsal-macos-m1.macos-with-brew/build/Lib/test/test_cppext/__init__.py", line62, inrun_cmd    subprocess.run(cmd,check=True,env=env)~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^  File"/Users/buildbot/buildarea/3.x.pablogsal-macos-m1.macos-with-brew/build/Lib/subprocess.py", line577, inrunraise CalledProcessError(retcode, process.args,                             output=stdout, stderr=stderr)subprocess.CalledProcessError:Command '['/Users/buildbot/buildarea/3.x.pablogsal-macos-m1.macos-with-brew/build/build/test_python_52959æ/tempcwd/env/bin/python.exe', '-X', 'dev', '-m', 'pip', 'install', '--no-build-isolation', '/Users/buildbot/buildarea/3.x.pablogsal-macos-m1.macos-with-brew/build/build/test_python_52959æ/tempcwd/pkg']' returned non-zero exit status 1.Traceback (most recent call last):  File"/Users/buildbot/buildarea/3.x.pablogsal-macos-m1.macos-with-brew/build/Lib/test/test_cppext/__init__.py", line32, intest_build_cpp03self.check_build('_testcpp03ext',std='c++03')~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^  File"/Users/buildbot/buildarea/3.x.pablogsal-macos-m1.macos-with-brew/build/Lib/test/test_cppext/__init__.py", line47, incheck_buildself._check_build(extension_name, python_exe,std=std)~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^  File"/Users/buildbot/buildarea/3.x.pablogsal-macos-m1.macos-with-brew/build/Lib/test/test_cppext/__init__.py", line79, in_check_build    run_cmd('Install', cmd)~~~~~~~^^^^^^^^^^^^^^^^  File"/Users/buildbot/buildarea/3.x.pablogsal-macos-m1.macos-with-brew/build/Lib/test/test_cppext/__init__.py", line62, inrun_cmd    subprocess.run(cmd,check=True,env=env)~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^  File"/Users/buildbot/buildarea/3.x.pablogsal-macos-m1.macos-with-brew/build/Lib/subprocess.py", line577, inrunraise CalledProcessError(retcode, process.args,                             output=stdout, stderr=stderr)subprocess.CalledProcessError:Command '['/Users/buildbot/buildarea/3.x.pablogsal-macos-m1.macos-with-brew/build/build/test_python_52959æ/tempcwd/env/bin/python.exe', '-X', 'dev', '-m', 'pip', 'install', '--no-build-isolation', '/Users/buildbot/buildarea/3.x.pablogsal-macos-m1.macos-with-brew/build/build/test_python_52959æ/tempcwd/pkg']' returned non-zero exit status 1.Traceback (most recent call last):  File"/Users/buildbot/buildarea/3.x.pablogsal-macos-m1.macos-with-brew/build/Lib/test/test_cext/__init__.py", line41, intest_build_c99self.check_build('_test_c99_cext',std='c99')~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^  File"/Users/buildbot/buildarea/3.x.pablogsal-macos-m1.macos-with-brew/build/Lib/test/test_cext/__init__.py", line54, incheck_buildself._check_build(extension_name, python_exe,~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^                      std=std, limited=limited)^^^^^^^^^^^^^^^^^^^^^^^^^  File"/Users/buildbot/buildarea/3.x.pablogsal-macos-m1.macos-with-brew/build/Lib/test/test_cext/__init__.py", line89, in_check_build    run_cmd('Install', cmd)~~~~~~~^^^^^^^^^^^^^^^^  File"/Users/buildbot/buildarea/3.x.pablogsal-macos-m1.macos-with-brew/build/Lib/test/test_cext/__init__.py", line72, inrun_cmd    subprocess.run(cmd,check=True,env=env)~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^  File"/Users/buildbot/buildarea/3.x.pablogsal-macos-m1.macos-with-brew/build/Lib/subprocess.py", line577, inrunraise CalledProcessError(retcode, process.args,                             output=stdout, stderr=stderr)subprocess.CalledProcessError:Command '['/Users/buildbot/buildarea/3.x.pablogsal-macos-m1.macos-with-brew/build/build/test_python_52960æ/tempcwd/env/bin/python.exe', '-X', 'dev', '-m', 'pip', 'install', '--no-build-isolation', '/Users/buildbot/buildarea/3.x.pablogsal-macos-m1.macos-with-brew/build/build/test_python_52960æ/tempcwd/pkg']' returned non-zero exit status 1.Traceback (most recent call last):  File"/Users/buildbot/buildarea/3.x.pablogsal-macos-m1.macos-with-brew/build/Lib/test/test_cext/__init__.py", line37, intest_build_c11self.check_build('_test_c11_cext',std='c11')~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^  File"/Users/buildbot/buildarea/3.x.pablogsal-macos-m1.macos-with-brew/build/Lib/test/test_cext/__init__.py", line54, incheck_buildself._check_build(extension_name, python_exe,~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^                      std=std, limited=limited)^^^^^^^^^^^^^^^^^^^^^^^^^  File"/Users/buildbot/buildarea/3.x.pablogsal-macos-m1.macos-with-brew/build/Lib/test/test_cext/__init__.py", line89, in_check_build    run_cmd('Install', cmd)~~~~~~~^^^^^^^^^^^^^^^^  File"/Users/buildbot/buildarea/3.x.pablogsal-macos-m1.macos-with-brew/build/Lib/test/test_cext/__init__.py", line72, inrun_cmd    subprocess.run(cmd,check=True,env=env)~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^  File"/Users/buildbot/buildarea/3.x.pablogsal-macos-m1.macos-with-brew/build/Lib/subprocess.py", line577, inrunraise CalledProcessError(retcode, process.args,                             output=stdout, stderr=stderr)subprocess.CalledProcessError:Command '['/Users/buildbot/buildarea/3.x.pablogsal-macos-m1.macos-with-brew/build/build/test_python_49638æ/tempcwd/env/bin/python.exe', '-X', 'dev', '-m', 'pip', 'install', '--no-build-isolation', '/Users/buildbot/buildarea/3.x.pablogsal-macos-m1.macos-with-brew/build/build/test_python_49638æ/tempcwd/pkg']' returned non-zero exit status 1.Traceback (most recent call last):  File"/Users/buildbot/buildarea/3.x.pablogsal-macos-m1.macos-with-brew/build/Lib/test/test_cext/__init__.py", line34, intest_buildself.check_build('_test_cext')~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^  File"/Users/buildbot/buildarea/3.x.pablogsal-macos-m1.macos-with-brew/build/Lib/test/test_cext/__init__.py", line54, incheck_buildself._check_build(extension_name, python_exe,~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^                      std=std, limited=limited)^^^^^^^^^^^^^^^^^^^^^^^^^  File"/Users/buildbot/buildarea/3.x.pablogsal-macos-m1.macos-with-brew/build/Lib/test/test_cext/__init__.py", line89, in_check_build    run_cmd('Install', cmd)~~~~~~~^^^^^^^^^^^^^^^^  File"/Users/buildbot/buildarea/3.x.pablogsal-macos-m1.macos-with-brew/build/Lib/test/test_cext/__init__.py", line72, inrun_cmd    subprocess.run(cmd,check=True,env=env)~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^  File"/Users/buildbot/buildarea/3.x.pablogsal-macos-m1.macos-with-brew/build/Lib/subprocess.py", line577, inrunraise CalledProcessError(retcode, process.args,                             output=stdout, stderr=stderr)subprocess.CalledProcessError:Command '['/Users/buildbot/buildarea/3.x.pablogsal-macos-m1.macos-with-brew/build/build/test_python_52960æ/tempcwd/env/bin/python.exe', '-X', 'dev', '-m', 'pip', 'install', '--no-build-isolation', '/Users/buildbot/buildarea/3.x.pablogsal-macos-m1.macos-with-brew/build/build/test_python_52960æ/tempcwd/pkg']' returned non-zero exit status 1.Traceback (most recent call last):  File"/Users/buildbot/buildarea/3.x.pablogsal-macos-m1.macos-with-brew/build/Lib/test/test_cppext/__init__.py", line36, intest_build_cpp11self.check_build('_testcpp11ext',std='c++11')~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^  File"/Users/buildbot/buildarea/3.x.pablogsal-macos-m1.macos-with-brew/build/Lib/test/test_cppext/__init__.py", line47, incheck_buildself._check_build(extension_name, python_exe,std=std)~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^  File"/Users/buildbot/buildarea/3.x.pablogsal-macos-m1.macos-with-brew/build/Lib/test/test_cppext/__init__.py", line79, in_check_build    run_cmd('Install', cmd)~~~~~~~^^^^^^^^^^^^^^^^  File"/Users/buildbot/buildarea/3.x.pablogsal-macos-m1.macos-with-brew/build/Lib/test/test_cppext/__init__.py", line62, inrun_cmd    subprocess.run(cmd,check=True,env=env)~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^  File"/Users/buildbot/buildarea/3.x.pablogsal-macos-m1.macos-with-brew/build/Lib/subprocess.py", line577, inrunraise CalledProcessError(retcode, process.args,                             output=stdout, stderr=stderr)subprocess.CalledProcessError:Command '['/Users/buildbot/buildarea/3.x.pablogsal-macos-m1.macos-with-brew/build/build/test_python_49136æ/tempcwd/env/bin/python.exe', '-X', 'dev', '-m', 'pip', 'install', '--no-build-isolation', '/Users/buildbot/buildarea/3.x.pablogsal-macos-m1.macos-with-brew/build/build/test_python_49136æ/tempcwd/pkg']' returned non-zero exit status 1.Traceback (most recent call last):  File"/Users/buildbot/buildarea/3.x.pablogsal-macos-m1.macos-with-brew/build/Lib/test/test_cppext/__init__.py", line36, intest_build_cpp11self.check_build('_testcpp11ext',std='c++11')~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^  File"/Users/buildbot/buildarea/3.x.pablogsal-macos-m1.macos-with-brew/build/Lib/test/test_cppext/__init__.py", line47, incheck_buildself._check_build(extension_name, python_exe,std=std)~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^  File"/Users/buildbot/buildarea/3.x.pablogsal-macos-m1.macos-with-brew/build/Lib/test/test_cppext/__init__.py", line79, in_check_build    run_cmd('Install', cmd)~~~~~~~^^^^^^^^^^^^^^^^  File"/Users/buildbot/buildarea/3.x.pablogsal-macos-m1.macos-with-brew/build/Lib/test/test_cppext/__init__.py", line62, inrun_cmd    subprocess.run(cmd,check=True,env=env)~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^  File"/Users/buildbot/buildarea/3.x.pablogsal-macos-m1.macos-with-brew/build/Lib/subprocess.py", line577, inrunraise CalledProcessError(retcode, process.args,                             output=stdout, stderr=stderr)subprocess.CalledProcessError:Command '['/Users/buildbot/buildarea/3.x.pablogsal-macos-m1.macos-with-brew/build/build/test_python_52959æ/tempcwd/env/bin/python.exe', '-X', 'dev', '-m', 'pip', 'install', '--no-build-isolation', '/Users/buildbot/buildarea/3.x.pablogsal-macos-m1.macos-with-brew/build/build/test_python_52959æ/tempcwd/pkg']' returned non-zero exit status 1.

@bedevere-bot
Copy link

⚠️⚠️⚠️ Buildbot failure⚠️⚠️⚠️

Hi! The buildbotx86-64 MacOS Intel NoGIL 3.x has failed when building commit7fb32e0.

What do you need to do:

  1. Don't panic.
  2. Checkthe buildbot page in the devguide if you don't know what the buildbots are or how they work.
  3. Go to the page of the buildbot that failed (https://buildbot.python.org/all/#builders/1258/builds/2227) and take a look at the build logs.
  4. Check if the failure is related to this commit (7fb32e0) or if it is a false positive.
  5. If the failure is related to this commit, please, reflect that on the issue and make a new Pull Request with a fix.

You can take a look at the buildbot page here:

https://buildbot.python.org/all/#builders/1258/builds/2227

Failed tests:

  • test_cppext
  • test_cext

Failed subtests:

  • test_build_c11 - test.test_cext.TestExt.test_build_c11
  • test_build - test.test_cppext.TestCPPExt.test_build
  • test_build_cpp03 - test.test_cppext.TestCPPExt.test_build_cpp03
  • test_build - test.test_cext.TestExt.test_build
  • test_build_c99 - test.test_cext.TestExt.test_build_c99
  • test_build_cpp11 - test.test_cppext.TestCPPExt.test_build_cpp11

Summary of the results of the build (if available):

==

Click to see traceback logs
Traceback (most recent call last):  File"/Users/ec2-user/buildbot/buildarea/3.x.itamaro-macos-intel-aws.nogil/build/Lib/test/test_cppext/__init__.py", line32, intest_build_cpp03self.check_build('_testcpp03ext',std='c++03')~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^  File"/Users/ec2-user/buildbot/buildarea/3.x.itamaro-macos-intel-aws.nogil/build/Lib/test/test_cppext/__init__.py", line47, incheck_buildself._check_build(extension_name, python_exe,std=std)~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^  File"/Users/ec2-user/buildbot/buildarea/3.x.itamaro-macos-intel-aws.nogil/build/Lib/test/test_cppext/__init__.py", line79, in_check_build    run_cmd('Install', cmd)~~~~~~~^^^^^^^^^^^^^^^^  File"/Users/ec2-user/buildbot/buildarea/3.x.itamaro-macos-intel-aws.nogil/build/Lib/test/test_cppext/__init__.py", line62, inrun_cmd    subprocess.run(cmd,check=True,env=env)~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^  File"/Users/ec2-user/buildbot/buildarea/3.x.itamaro-macos-intel-aws.nogil/build/Lib/subprocess.py", line577, inrunraise CalledProcessError(retcode, process.args,                             output=stdout, stderr=stderr)subprocess.CalledProcessError:Command '['/Users/ec2-user/buildbot/buildarea/3.x.itamaro-macos-intel-aws.nogil/build/build/test_python_52254æ/tempcwd/env/bin/python.exe', '-X', 'dev', '-m', 'pip', 'install', '--no-build-isolation', '/Users/ec2-user/buildbot/buildarea/3.x.itamaro-macos-intel-aws.nogil/build/build/test_python_52254æ/tempcwd/pkg']' returned non-zero exit status 1.Traceback (most recent call last):  File"/Users/ec2-user/buildbot/buildarea/3.x.itamaro-macos-intel-aws.nogil/build/Lib/test/test_cppext/__init__.py", line32, intest_build_cpp03self.check_build('_testcpp03ext',std='c++03')~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^  File"/Users/ec2-user/buildbot/buildarea/3.x.itamaro-macos-intel-aws.nogil/build/Lib/test/test_cppext/__init__.py", line47, incheck_buildself._check_build(extension_name, python_exe,std=std)~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^  File"/Users/ec2-user/buildbot/buildarea/3.x.itamaro-macos-intel-aws.nogil/build/Lib/test/test_cppext/__init__.py", line79, in_check_build    run_cmd('Install', cmd)~~~~~~~^^^^^^^^^^^^^^^^  File"/Users/ec2-user/buildbot/buildarea/3.x.itamaro-macos-intel-aws.nogil/build/Lib/test/test_cppext/__init__.py", line62, inrun_cmd    subprocess.run(cmd,check=True,env=env)~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^  File"/Users/ec2-user/buildbot/buildarea/3.x.itamaro-macos-intel-aws.nogil/build/Lib/subprocess.py", line577, inrunraise CalledProcessError(retcode, process.args,                             output=stdout, stderr=stderr)subprocess.CalledProcessError:Command '['/Users/ec2-user/buildbot/buildarea/3.x.itamaro-macos-intel-aws.nogil/build/build/test_python_72667æ/tempcwd/env/bin/python.exe', '-X', 'dev', '-m', 'pip', 'install', '--no-build-isolation', '/Users/ec2-user/buildbot/buildarea/3.x.itamaro-macos-intel-aws.nogil/build/build/test_python_72667æ/tempcwd/pkg']' returned non-zero exit status 1.Traceback (most recent call last):  File"/Users/ec2-user/buildbot/buildarea/3.x.itamaro-macos-intel-aws.nogil/build/Lib/test/test_cext/__init__.py", line37, intest_build_c11self.check_build('_test_c11_cext',std='c11')~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^  File"/Users/ec2-user/buildbot/buildarea/3.x.itamaro-macos-intel-aws.nogil/build/Lib/test/test_cext/__init__.py", line54, incheck_buildself._check_build(extension_name, python_exe,~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^                      std=std, limited=limited)^^^^^^^^^^^^^^^^^^^^^^^^^  File"/Users/ec2-user/buildbot/buildarea/3.x.itamaro-macos-intel-aws.nogil/build/Lib/test/test_cext/__init__.py", line89, in_check_build    run_cmd('Install', cmd)~~~~~~~^^^^^^^^^^^^^^^^  File"/Users/ec2-user/buildbot/buildarea/3.x.itamaro-macos-intel-aws.nogil/build/Lib/test/test_cext/__init__.py", line72, inrun_cmd    subprocess.run(cmd,check=True,env=env)~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^  File"/Users/ec2-user/buildbot/buildarea/3.x.itamaro-macos-intel-aws.nogil/build/Lib/subprocess.py", line577, inrunraise CalledProcessError(retcode, process.args,                             output=stdout, stderr=stderr)subprocess.CalledProcessError:Command '['/Users/ec2-user/buildbot/buildarea/3.x.itamaro-macos-intel-aws.nogil/build/build/test_python_72666æ/tempcwd/env/bin/python.exe', '-X', 'dev', '-m', 'pip', 'install', '--no-build-isolation', '/Users/ec2-user/buildbot/buildarea/3.x.itamaro-macos-intel-aws.nogil/build/build/test_python_72666æ/tempcwd/pkg']' returned non-zero exit status 1.Traceback (most recent call last):  File"/Users/ec2-user/buildbot/buildarea/3.x.itamaro-macos-intel-aws.nogil/build/Lib/test/test_cext/__init__.py", line34, intest_buildself.check_build('_test_cext')~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^  File"/Users/ec2-user/buildbot/buildarea/3.x.itamaro-macos-intel-aws.nogil/build/Lib/test/test_cext/__init__.py", line54, incheck_buildself._check_build(extension_name, python_exe,~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^                      std=std, limited=limited)^^^^^^^^^^^^^^^^^^^^^^^^^  File"/Users/ec2-user/buildbot/buildarea/3.x.itamaro-macos-intel-aws.nogil/build/Lib/test/test_cext/__init__.py", line89, in_check_build    run_cmd('Install', cmd)~~~~~~~^^^^^^^^^^^^^^^^  File"/Users/ec2-user/buildbot/buildarea/3.x.itamaro-macos-intel-aws.nogil/build/Lib/test/test_cext/__init__.py", line72, inrun_cmd    subprocess.run(cmd,check=True,env=env)~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^  File"/Users/ec2-user/buildbot/buildarea/3.x.itamaro-macos-intel-aws.nogil/build/Lib/subprocess.py", line577, inrunraise CalledProcessError(retcode, process.args,                             output=stdout, stderr=stderr)subprocess.CalledProcessError:Command '['/Users/ec2-user/buildbot/buildarea/3.x.itamaro-macos-intel-aws.nogil/build/build/test_python_54906æ/tempcwd/env/bin/python.exe', '-X', 'dev', '-m', 'pip', 'install', '--no-build-isolation', '/Users/ec2-user/buildbot/buildarea/3.x.itamaro-macos-intel-aws.nogil/build/build/test_python_54906æ/tempcwd/pkg']' returned non-zero exit status 1.Traceback (most recent call last):  File"/Users/ec2-user/buildbot/buildarea/3.x.itamaro-macos-intel-aws.nogil/build/Lib/test/test_cppext/__init__.py", line36, intest_build_cpp11self.check_build('_testcpp11ext',std='c++11')~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^  File"/Users/ec2-user/buildbot/buildarea/3.x.itamaro-macos-intel-aws.nogil/build/Lib/test/test_cppext/__init__.py", line47, incheck_buildself._check_build(extension_name, python_exe,std=std)~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^  File"/Users/ec2-user/buildbot/buildarea/3.x.itamaro-macos-intel-aws.nogil/build/Lib/test/test_cppext/__init__.py", line79, in_check_build    run_cmd('Install', cmd)~~~~~~~^^^^^^^^^^^^^^^^  File"/Users/ec2-user/buildbot/buildarea/3.x.itamaro-macos-intel-aws.nogil/build/Lib/test/test_cppext/__init__.py", line62, inrun_cmd    subprocess.run(cmd,check=True,env=env)~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^  File"/Users/ec2-user/buildbot/buildarea/3.x.itamaro-macos-intel-aws.nogil/build/Lib/subprocess.py", line577, inrunraise CalledProcessError(retcode, process.args,                             output=stdout, stderr=stderr)subprocess.CalledProcessError:Command '['/Users/ec2-user/buildbot/buildarea/3.x.itamaro-macos-intel-aws.nogil/build/build/test_python_52254æ/tempcwd/env/bin/python.exe', '-X', 'dev', '-m', 'pip', 'install', '--no-build-isolation', '/Users/ec2-user/buildbot/buildarea/3.x.itamaro-macos-intel-aws.nogil/build/build/test_python_52254æ/tempcwd/pkg']' returned non-zero exit status 1.Traceback (most recent call last):  File"/Users/ec2-user/buildbot/buildarea/3.x.itamaro-macos-intel-aws.nogil/build/Lib/test/test_cext/__init__.py", line37, intest_build_c11self.check_build('_test_c11_cext',std='c11')~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^  File"/Users/ec2-user/buildbot/buildarea/3.x.itamaro-macos-intel-aws.nogil/build/Lib/test/test_cext/__init__.py", line54, incheck_buildself._check_build(extension_name, python_exe,~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^                      std=std, limited=limited)^^^^^^^^^^^^^^^^^^^^^^^^^  File"/Users/ec2-user/buildbot/buildarea/3.x.itamaro-macos-intel-aws.nogil/build/Lib/test/test_cext/__init__.py", line89, in_check_build    run_cmd('Install', cmd)~~~~~~~^^^^^^^^^^^^^^^^  File"/Users/ec2-user/buildbot/buildarea/3.x.itamaro-macos-intel-aws.nogil/build/Lib/test/test_cext/__init__.py", line72, inrun_cmd    subprocess.run(cmd,check=True,env=env)~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^  File"/Users/ec2-user/buildbot/buildarea/3.x.itamaro-macos-intel-aws.nogil/build/Lib/subprocess.py", line577, inrunraise CalledProcessError(retcode, process.args,                             output=stdout, stderr=stderr)subprocess.CalledProcessError:Command '['/Users/ec2-user/buildbot/buildarea/3.x.itamaro-macos-intel-aws.nogil/build/build/test_python_54906æ/tempcwd/env/bin/python.exe', '-X', 'dev', '-m', 'pip', 'install', '--no-build-isolation', '/Users/ec2-user/buildbot/buildarea/3.x.itamaro-macos-intel-aws.nogil/build/build/test_python_54906æ/tempcwd/pkg']' returned non-zero exit status 1.Traceback (most recent call last):  File"/Users/ec2-user/buildbot/buildarea/3.x.itamaro-macos-intel-aws.nogil/build/Lib/test/test_cppext/__init__.py", line29, intest_buildself.check_build('_testcppext')~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^  File"/Users/ec2-user/buildbot/buildarea/3.x.itamaro-macos-intel-aws.nogil/build/Lib/test/test_cppext/__init__.py", line47, incheck_buildself._check_build(extension_name, python_exe,std=std)~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^  File"/Users/ec2-user/buildbot/buildarea/3.x.itamaro-macos-intel-aws.nogil/build/Lib/test/test_cppext/__init__.py", line79, in_check_build    run_cmd('Install', cmd)~~~~~~~^^^^^^^^^^^^^^^^  File"/Users/ec2-user/buildbot/buildarea/3.x.itamaro-macos-intel-aws.nogil/build/Lib/test/test_cppext/__init__.py", line62, inrun_cmd    subprocess.run(cmd,check=True,env=env)~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^  File"/Users/ec2-user/buildbot/buildarea/3.x.itamaro-macos-intel-aws.nogil/build/Lib/subprocess.py", line577, inrunraise CalledProcessError(retcode, process.args,                             output=stdout, stderr=stderr)subprocess.CalledProcessError:Command '['/Users/ec2-user/buildbot/buildarea/3.x.itamaro-macos-intel-aws.nogil/build/build/test_python_52254æ/tempcwd/env/bin/python.exe', '-X', 'dev', '-m', 'pip', 'install', '--no-build-isolation', '/Users/ec2-user/buildbot/buildarea/3.x.itamaro-macos-intel-aws.nogil/build/build/test_python_52254æ/tempcwd/pkg']' returned non-zero exit status 1.Traceback (most recent call last):  File"/Users/ec2-user/buildbot/buildarea/3.x.itamaro-macos-intel-aws.nogil/build/Lib/test/test_cext/__init__.py", line34, intest_buildself.check_build('_test_cext')~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^  File"/Users/ec2-user/buildbot/buildarea/3.x.itamaro-macos-intel-aws.nogil/build/Lib/test/test_cext/__init__.py", line54, incheck_buildself._check_build(extension_name, python_exe,~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^                      std=std, limited=limited)^^^^^^^^^^^^^^^^^^^^^^^^^  File"/Users/ec2-user/buildbot/buildarea/3.x.itamaro-macos-intel-aws.nogil/build/Lib/test/test_cext/__init__.py", line89, in_check_build    run_cmd('Install', cmd)~~~~~~~^^^^^^^^^^^^^^^^  File"/Users/ec2-user/buildbot/buildarea/3.x.itamaro-macos-intel-aws.nogil/build/Lib/test/test_cext/__init__.py", line72, inrun_cmd    subprocess.run(cmd,check=True,env=env)~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^  File"/Users/ec2-user/buildbot/buildarea/3.x.itamaro-macos-intel-aws.nogil/build/Lib/subprocess.py", line577, inrunraise CalledProcessError(retcode, process.args,                             output=stdout, stderr=stderr)subprocess.CalledProcessError:Command '['/Users/ec2-user/buildbot/buildarea/3.x.itamaro-macos-intel-aws.nogil/build/build/test_python_72666æ/tempcwd/env/bin/python.exe', '-X', 'dev', '-m', 'pip', 'install', '--no-build-isolation', '/Users/ec2-user/buildbot/buildarea/3.x.itamaro-macos-intel-aws.nogil/build/build/test_python_72666æ/tempcwd/pkg']' returned non-zero exit status 1.Traceback (most recent call last):  File"/Users/ec2-user/buildbot/buildarea/3.x.itamaro-macos-intel-aws.nogil/build/Lib/test/test_cext/__init__.py", line41, intest_build_c99self.check_build('_test_c99_cext',std='c99')~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^  File"/Users/ec2-user/buildbot/buildarea/3.x.itamaro-macos-intel-aws.nogil/build/Lib/test/test_cext/__init__.py", line54, incheck_buildself._check_build(extension_name, python_exe,~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^                      std=std, limited=limited)^^^^^^^^^^^^^^^^^^^^^^^^^  File"/Users/ec2-user/buildbot/buildarea/3.x.itamaro-macos-intel-aws.nogil/build/Lib/test/test_cext/__init__.py", line89, in_check_build    run_cmd('Install', cmd)~~~~~~~^^^^^^^^^^^^^^^^  File"/Users/ec2-user/buildbot/buildarea/3.x.itamaro-macos-intel-aws.nogil/build/Lib/test/test_cext/__init__.py", line72, inrun_cmd    subprocess.run(cmd,check=True,env=env)~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^  File"/Users/ec2-user/buildbot/buildarea/3.x.itamaro-macos-intel-aws.nogil/build/Lib/subprocess.py", line577, inrunraise CalledProcessError(retcode, process.args,                             output=stdout, stderr=stderr)subprocess.CalledProcessError:Command '['/Users/ec2-user/buildbot/buildarea/3.x.itamaro-macos-intel-aws.nogil/build/build/test_python_72666æ/tempcwd/env/bin/python.exe', '-X', 'dev', '-m', 'pip', 'install', '--no-build-isolation', '/Users/ec2-user/buildbot/buildarea/3.x.itamaro-macos-intel-aws.nogil/build/build/test_python_72666æ/tempcwd/pkg']' returned non-zero exit status 1.Traceback (most recent call last):  File"/Users/ec2-user/buildbot/buildarea/3.x.itamaro-macos-intel-aws.nogil/build/Lib/test/test_cppext/__init__.py", line36, intest_build_cpp11self.check_build('_testcpp11ext',std='c++11')~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^  File"/Users/ec2-user/buildbot/buildarea/3.x.itamaro-macos-intel-aws.nogil/build/Lib/test/test_cppext/__init__.py", line47, incheck_buildself._check_build(extension_name, python_exe,std=std)~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^  File"/Users/ec2-user/buildbot/buildarea/3.x.itamaro-macos-intel-aws.nogil/build/Lib/test/test_cppext/__init__.py", line79, in_check_build    run_cmd('Install', cmd)~~~~~~~^^^^^^^^^^^^^^^^  File"/Users/ec2-user/buildbot/buildarea/3.x.itamaro-macos-intel-aws.nogil/build/Lib/test/test_cppext/__init__.py", line62, inrun_cmd    subprocess.run(cmd,check=True,env=env)~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^  File"/Users/ec2-user/buildbot/buildarea/3.x.itamaro-macos-intel-aws.nogil/build/Lib/subprocess.py", line577, inrunraise CalledProcessError(retcode, process.args,                             output=stdout, stderr=stderr)subprocess.CalledProcessError:Command '['/Users/ec2-user/buildbot/buildarea/3.x.itamaro-macos-intel-aws.nogil/build/build/test_python_72667æ/tempcwd/env/bin/python.exe', '-X', 'dev', '-m', 'pip', 'install', '--no-build-isolation', '/Users/ec2-user/buildbot/buildarea/3.x.itamaro-macos-intel-aws.nogil/build/build/test_python_72667æ/tempcwd/pkg']' returned non-zero exit status 1.Traceback (most recent call last):  File"/Users/ec2-user/buildbot/buildarea/3.x.itamaro-macos-intel-aws.nogil/build/Lib/test/test_cppext/__init__.py", line29, intest_buildself.check_build('_testcppext')~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^  File"/Users/ec2-user/buildbot/buildarea/3.x.itamaro-macos-intel-aws.nogil/build/Lib/test/test_cppext/__init__.py", line47, incheck_buildself._check_build(extension_name, python_exe,std=std)~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^  File"/Users/ec2-user/buildbot/buildarea/3.x.itamaro-macos-intel-aws.nogil/build/Lib/test/test_cppext/__init__.py", line79, in_check_build    run_cmd('Install', cmd)~~~~~~~^^^^^^^^^^^^^^^^  File"/Users/ec2-user/buildbot/buildarea/3.x.itamaro-macos-intel-aws.nogil/build/Lib/test/test_cppext/__init__.py", line62, inrun_cmd    subprocess.run(cmd,check=True,env=env)~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^  File"/Users/ec2-user/buildbot/buildarea/3.x.itamaro-macos-intel-aws.nogil/build/Lib/subprocess.py", line577, inrunraise CalledProcessError(retcode, process.args,                             output=stdout, stderr=stderr)subprocess.CalledProcessError:Command '['/Users/ec2-user/buildbot/buildarea/3.x.itamaro-macos-intel-aws.nogil/build/build/test_python_72667æ/tempcwd/env/bin/python.exe', '-X', 'dev', '-m', 'pip', 'install', '--no-build-isolation', '/Users/ec2-user/buildbot/buildarea/3.x.itamaro-macos-intel-aws.nogil/build/build/test_python_72667æ/tempcwd/pkg']' returned non-zero exit status 1.Traceback (most recent call last):  File"/Users/ec2-user/buildbot/buildarea/3.x.itamaro-macos-intel-aws.nogil/build/Lib/test/test_cext/__init__.py", line41, intest_build_c99self.check_build('_test_c99_cext',std='c99')~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^  File"/Users/ec2-user/buildbot/buildarea/3.x.itamaro-macos-intel-aws.nogil/build/Lib/test/test_cext/__init__.py", line54, incheck_buildself._check_build(extension_name, python_exe,~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^                      std=std, limited=limited)^^^^^^^^^^^^^^^^^^^^^^^^^  File"/Users/ec2-user/buildbot/buildarea/3.x.itamaro-macos-intel-aws.nogil/build/Lib/test/test_cext/__init__.py", line89, in_check_build    run_cmd('Install', cmd)~~~~~~~^^^^^^^^^^^^^^^^  File"/Users/ec2-user/buildbot/buildarea/3.x.itamaro-macos-intel-aws.nogil/build/Lib/test/test_cext/__init__.py", line72, inrun_cmd    subprocess.run(cmd,check=True,env=env)~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^  File"/Users/ec2-user/buildbot/buildarea/3.x.itamaro-macos-intel-aws.nogil/build/Lib/subprocess.py", line577, inrunraise CalledProcessError(retcode, process.args,                             output=stdout, stderr=stderr)subprocess.CalledProcessError:Command '['/Users/ec2-user/buildbot/buildarea/3.x.itamaro-macos-intel-aws.nogil/build/build/test_python_54906æ/tempcwd/env/bin/python.exe', '-X', 'dev', '-m', 'pip', 'install', '--no-build-isolation', '/Users/ec2-user/buildbot/buildarea/3.x.itamaro-macos-intel-aws.nogil/build/build/test_python_54906æ/tempcwd/pkg']' returned non-zero exit status 1.

@sobolevn
Copy link
Member

I've created#121026 because-Wtrampolines does not seem to be supported on macos.

mrahtz pushed a commit to mrahtz/cpython that referenced this pull requestJun 30, 2024
noahbkim pushed a commit to hudson-trading/cpython that referenced this pull requestJul 11, 2024
estyxx pushed a commit to estyxx/cpython that referenced this pull requestJul 17, 2024
Sign up for freeto join this conversation on GitHub. Already have an account?Sign in to comment

Reviewers

@hugovkhugovkhugovk left review comments

@corona10corona10corona10 approved these changes

@erlend-aaslanderlend-aaslandAwaiting requested review from erlend-aaslanderlend-aasland is a code owner

@mdboommdboomAwaiting requested review from mdboom

+1 more reviewer

@thesamesamthesamesamthesamesam left review comments

Reviewers whose approvals may not affect merge requirements

Assignees

No one assigned

Labels

None yet

Projects

None yet

Milestone

No milestone

Development

Successfully merging this pull request may close these issues.

9 participants

@nohlson@thesamesam@mdboom@eli-schwartz@bedevere-bot@sobolevn@hugovk@corona10@erlend-aasland

[8]ページ先頭

©2009-2025 Movatter.jp