| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
Sorry, something went wrong.
-mios-version-min names the device platform, so against the simulator SDK the linker rejects every dylib it resolves there. Configuring for the simulator still exits 0, but conftest links fail and iconv, sqlite3 and zlib features are misdetected as absent; a build with a library on LDFLAGS before the first compiler check fails outright instead. The device/simulator split is already known from the host triple, so select the flag from it.
CPython appends -mios-version-min - the device flag - to every iOS build. Against the simulator SDK the linker rejects the dylibs it resolves there, and the first configure check that links one fails, taking the depends build with it. The local patch faked ac_sys_system=iOS by deleting CPython's host parsing, because config.site.in pinned every package to the tree's darwin triplet. Python now configures against its own iOS triplet, so CPython derives ac_sys_system, the deployment target and the device/simulator split itself, and the 76 lines that deleted that logic are gone. What is left matches three patches under review upstream, so all three can be dropped when python is next bumped: python/cpython#156110 python/cpython#156116 python/cpython#156113 Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
CPython appends -mios-version-min - the device flag - to every iOS build. Against the simulator SDK the linker rejects the dylibs it resolves there, and the first configure check that links one fails, taking the depends build with it. The local patch faked ac_sys_system=iOS by deleting CPython's host parsing, because config.site.in pinned every package to the tree's darwin triplet. Python now configures against its own iOS triplet, so CPython derives ac_sys_system, the deployment target and the device/simulator split itself, and the 76 lines that deleted that logic are gone. What is left matches three patches under review upstream, so all three can be dropped when python is next bumped: python/cpython#156110 python/cpython#156116 python/cpython#156113 Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
CPython appends -mios-version-min - the device flag - to every iOS build. Against the simulator SDK the linker rejects the dylibs it resolves there, and the first configure check that links one fails, taking the depends build with it. The local patch faked ac_sys_system=iOS by deleting CPython's host parsing, because config.site.in pinned every package to the tree's darwin triplet. Python now configures against its own iOS triplet, so CPython derives ac_sys_system, the deployment target and the device/simulator split itself, and the 76 lines that deleted that logic are gone. What is left matches three patches under review upstream, so all three can be dropped when python is next bumped: python/cpython#156110 python/cpython#156116 python/cpython#156113 Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
There was a problem hiding this comment.
This is mechanically correct, but I think it can be significantly simplified.
Sorry, something went wrong.
|
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 phrase I 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. |
Sorry, something went wrong.
|
Thanks — both applied. The block is now a single AS_CASE on $host with an arm each for simulator and device, so it no longer depends on _host_device being set earlier, and the comment is gone. Re-checked on macOS/arm64 with --enable-framework: --host=aarch64-apple-ios12.0-simulator emits -mios-simulator-version-min=12.0, --host=aarch64-apple-ios12.0 emits -mios-version-min=12.0, both configure cleanly. I have made the requested changes; please review again |
Sorry, something went wrong.
|
Thanks for making the requested changes! @freakboy3742: please review the changes made to this pull request. |
Sorry, something went wrong.
There was a problem hiding this comment.
👍 Thanks for those cleanups!
Sorry, something went wrong.
|
Thanks @clementperon for the PR, and @freakboy3742 for merging it 🌮🎉.. I'm working now to backport this PR to: 3.13, 3.14, 3.15. |
Sorry, something went wrong.
|
GH-156211 is a backport of this pull request to the 3.15 branch. |
Sorry, something went wrong.
|
GH-156212 is a backport of this pull request to the 3.14 branch. |
Sorry, something went wrong.
|
GH-156213 is a backport of this pull request to the 3.13 branch. |
Sorry, something went wrong.
…mulator builds (GH-156116) (#156213) Ensures that CFLAGS and LDFLAGS use -mios-simulator-version-min, rather than the device-based -mios-version-min. This only matters if the CFLAGS and LDFLAGS are used in a bare call to clang without a -target; but that is a legal usage, so it's worth catching. (cherry picked from commit d856402) Co-authored-by: Clément Péron <peron.clem@gmail.com>
…mulator builds (GH-156116) (#156212) Ensures that CFLAGS and LDFLAGS use -mios-simulator-version-min, rather than the device-based -mios-version-min. This only matters if the CFLAGS and LDFLAGS are used in a bare call to clang without a -target; but that is a legal usage, so it's worth catching. (cherry picked from commit d856402) Co-authored-by: Clément Péron <peron.clem@gmail.com>
⚠️⚠️⚠️ Buildbot failure ⚠️⚠️⚠️Hi! The buildbot AMD64 Fedora Stable Clang 3.x (tier-2) has failed when building commit d856402. What do you need to do:
You can take a look at the buildbot page here: https://buildbot.python.org/#/builders/441/builds/10292 Failed tests:
Failed subtests:
Summary of the results of the build (if available): == Click to see traceback logsTraceback (most recent call last):
File "/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/Lib/test/test_zipfile/test_core.py", line 5403, in test_write_while_reading
with zipf.open('twos', 'w') as w1:
~~~~~~~~~^^^^^^^^^^^^^
File "/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/Lib/zipfile/__init__.py", line 1378, in close
raise RuntimeError("File size too large, try using force_zip64")
RuntimeError: File size too large, try using force_zip64
Traceback (most recent call last):
File "/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/Lib/test/test_cext/__init__.py", line 115, in test_build_limited
self.check_build('_test_limited_cext', limited=True)
~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/Lib/test/test_cext/__init__.py", line 45, in check_build
with support.setup_venv_with_pip_setuptools(venv_dir) as python_exe:
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^
File "/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/Lib/contextlib.py", line 203, in __enter__
for once in self.gen:
^^^^^^^^
File "/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/Lib/test/support/__init__.py", line 2715, in setup_venv_with_pip_setuptools
run_command(cmd)
~~~~~~~~~~~^^^^^
File "/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/Lib/test/support/__init__.py", line 2690, in run_command
subprocess.run(cmd, check=True)
~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^
File "/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/Lib/subprocess.py", line 692, in run
raise CalledProcessError(retcode, process.args,
output=stdout, stderr=stderr)
subprocess.CalledProcessError: Command ('/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/build/test_python_3864998æ/tempcwd/env/bin/python', '-X', 'dev', '-m', 'pip', 'install', '/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/Lib/test/wheeldata/setuptools-79.0.1-py3-none-any.whl') returned non-zero exit status 1.
Traceback (most recent call last):
File "/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/Lib/test/test_peg_generator/test_c_parser.py", line 376, in test_same_name_different_types
self.run_test(grammar_source, test_source)
~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/Lib/test/test_peg_generator/test_c_parser.py", line 141, in run_test
self.build_extension(grammar_source)
~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^
File "/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/Lib/test/test_peg_generator/test_c_parser.py", line 138, in build_extension
generate_parser_c_extension(grammar, Path('.'), library_dir=self.library_dir)
~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/Tools/peg_generator/pegen/testutil.py", line 107, in generate_parser_c_extension
compile_c_extension(
~~~~~~~~~~~~~~~~~~~^
str(source),
^^^^^^^^^^^^
...<3 lines>...
library_dir=library_dir,
^^^^^^^^^^^^^^^^^^^^^^^^
)
^
File "/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/Tools/peg_generator/pegen/build.py", line 236, in compile_c_extension
compiler.link_shared_object(
~~~~~~~~~~~~~~~~~~~~~~~~~~~^
objects,
^^^^^^^^
...<5 lines>...
build_temp=cmd.build_temp,
^^^^^^^^^^^^^^^^^^^^^^^^^^
)
^
File "/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/build/test_python_3852758æ/tempcwd/venv/lib/python3.16/site-packages/setuptools/_distutils/compilers/C/base.py", line 812, in link_shared_object
self.link(
~~~~~~~~~^
Compiler.SHARED_OBJECT,
^^^^^^^^^^^^^^^^^^^^^^^
...<11 lines>...
target_lang,
^^^^^^^^^^^^
)
^
File "/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/build/test_python_3852758æ/tempcwd/venv/lib/python3.16/site-packages/setuptools/_distutils/compilers/C/unix.py", line 309, in link
raise LinkError(msg)
distutils.compilers.C.errors.LinkError: command '/usr/bin/clang' failed with exit code 1
Traceback (most recent call last):
File "/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/Lib/test/test_cext/__init__.py", line 122, in test_build_c11
self.check_build('_test_c11_cext', std='c11')
~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/Lib/test/test_cext/__init__.py", line 45, in check_build
with support.setup_venv_with_pip_setuptools(venv_dir) as python_exe:
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^
File "/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/Lib/contextlib.py", line 203, in __enter__
for once in self.gen:
^^^^^^^^
File "/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/Lib/test/support/__init__.py", line 2715, in setup_venv_with_pip_setuptools
run_command(cmd)
~~~~~~~~~~~^^^^^
File "/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/Lib/test/support/__init__.py", line 2690, in run_command
subprocess.run(cmd, check=True)
~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^
File "/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/Lib/subprocess.py", line 692, in run
raise CalledProcessError(retcode, process.args,
output=stdout, stderr=stderr)
subprocess.CalledProcessError: Command ('/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/build/test_python_3884314æ/tempcwd/env/bin/python', '-X', 'dev', '-m', 'pip', 'install', '/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/Lib/test/wheeldata/setuptools-79.0.1-py3-none-any.whl') returned non-zero exit status 1.
Traceback (most recent call last):
File "/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/Lib/test/test_zipfile/test_core.py", line 1490, in _prepare_zip_from_test_files
with zh.open(file, 'w', force_zip64=force_zip64) as fh:
~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/Lib/zipfile/__init__.py", line 1395, in close
self._fileobj.seek(self._zinfo.header_offset)
~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^
OSError: [Errno 28] No space left on device
Traceback (most recent call last):
File "/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/Lib/test/test_zipfile/test_core.py", line 2328, in test_repack_removed_bad_non_removed
self._prepare_zip_from_test_files(TESTFN, self.test_files)
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^
File "/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/Lib/test/test_zipfile/test_core.py", line 1488, in _prepare_zip_from_test_files
with zipfile.ZipFile(zfname, 'w', cls.compression) as zh:
~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/Lib/zipfile/__init__.py", line 1998, in __exit__
self.close()
~~~~~~~~~~^^
File "/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/Lib/zipfile/__init__.py", line 2644, in close
self._fpclose(fp)
~~~~~~~~~~~~~^^^^
File "/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/Lib/zipfile/__init__.py", line 2746, in _fpclose
fp.close()
~~~~~~~~^^
OSError: [Errno 28] No space left on device
Traceback (most recent call last):
File "/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/Lib/test/test_peg_generator/test_c_parser.py", line 274, in test_mutually_left_recursive
self.run_test(grammar_source, test_source)
~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/Lib/test/test_peg_generator/test_c_parser.py", line 141, in run_test
self.build_extension(grammar_source)
~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^
File "/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/Lib/test/test_peg_generator/test_c_parser.py", line 138, in build_extension
generate_parser_c_extension(grammar, Path('.'), library_dir=self.library_dir)
~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/Tools/peg_generator/pegen/testutil.py", line 107, in generate_parser_c_extension
compile_c_extension(
~~~~~~~~~~~~~~~~~~~^
str(source),
^^^^^^^^^^^^
...<3 lines>...
library_dir=library_dir,
^^^^^^^^^^^^^^^^^^^^^^^^
)
^
File "/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/Tools/peg_generator/pegen/build.py", line 236, in compile_c_extension
compiler.link_shared_object(
~~~~~~~~~~~~~~~~~~~~~~~~~~~^
objects,
^^^^^^^^
...<5 lines>...
build_temp=cmd.build_temp,
^^^^^^^^^^^^^^^^^^^^^^^^^^
)
^
File "/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/build/test_python_3852758æ/tempcwd/venv/lib/python3.16/site-packages/setuptools/_distutils/compilers/C/base.py", line 812, in link_shared_object
self.link(
~~~~~~~~~^
Compiler.SHARED_OBJECT,
^^^^^^^^^^^^^^^^^^^^^^^
...<11 lines>...
target_lang,
^^^^^^^^^^^^
)
^
File "/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/build/test_python_3852758æ/tempcwd/venv/lib/python3.16/site-packages/setuptools/_distutils/compilers/C/unix.py", line 309, in link
raise LinkError(msg)
distutils.compilers.C.errors.LinkError: command '/usr/bin/clang' failed with exit code 1
Traceback (most recent call last):
File "/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/Lib/test/test_cext/__init__.py", line 133, in test_build_c99
self.check_build('_test_c99_cext', std='c99')
~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/Lib/test/test_cext/__init__.py", line 45, in check_build
with support.setup_venv_with_pip_setuptools(venv_dir) as python_exe:
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^
File "/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/Lib/contextlib.py", line 203, in __enter__
for once in self.gen:
^^^^^^^^
File "/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/Lib/test/support/__init__.py", line 2715, in setup_venv_with_pip_setuptools
run_command(cmd)
~~~~~~~~~~~^^^^^
File "/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/Lib/test/support/__init__.py", line 2690, in run_command
subprocess.run(cmd, check=True)
~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^
File "/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/Lib/subprocess.py", line 692, in run
raise CalledProcessError(retcode, process.args,
output=stdout, stderr=stderr)
subprocess.CalledProcessError: Command ('/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/build/test_python_3864998æ/tempcwd/env/bin/python', '-X', 'dev', '-m', 'pip', 'install', '/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/Lib/test/wheeldata/setuptools-79.0.1-py3-none-any.whl') returned non-zero exit status 1.
Traceback (most recent call last):
File "/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/Lib/test/test_cext/__init__.py", line 126, in test_build_abi3t
self.check_build('_test_abi3t', abi3t=True)
~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/Lib/test/test_cext/__init__.py", line 45, in check_build
with support.setup_venv_with_pip_setuptools(venv_dir) as python_exe:
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^
File "/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/Lib/contextlib.py", line 203, in __enter__
for once in self.gen:
^^^^^^^^
File "/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/Lib/test/support/__init__.py", line 2715, in setup_venv_with_pip_setuptools
run_command(cmd)
~~~~~~~~~~~^^^^^
File "/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/Lib/test/support/__init__.py", line 2690, in run_command
subprocess.run(cmd, check=True)
~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^
File "/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/Lib/subprocess.py", line 692, in run
raise CalledProcessError(retcode, process.args,
output=stdout, stderr=stderr)
subprocess.CalledProcessError: Command ('/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/build/test_python_3864998æ/tempcwd/env/bin/python', '-X', 'dev', '-m', 'pip', 'install', '/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/Lib/test/wheeldata/setuptools-79.0.1-py3-none-any.whl') returned non-zero exit status 1.
Traceback (most recent call last):
File "/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/Lib/test/test_zipfile/test_core.py", line 414, in test_compresslevel_basic
self.zip_test(f, self.compression, compresslevel=9)
~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/Lib/test/test_zipfile/test_core.py", line 90, in zip_test
self.make_test_archive(f, compression, compresslevel)
~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/Lib/test/test_zipfile/test_core.py", line 85, in make_test_archive
with zipfp.open('written-open-w', mode='w') as f:
~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/Lib/zipfile/__init__.py", line 1378, in close
raise RuntimeError("File size too large, try using force_zip64")
RuntimeError: File size too large, try using force_zip64
Traceback (most recent call last):
File "/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/Lib/test/test_peg_generator/test_c_parser.py", line 302, in test_return_stmt_noexpr_action
self.run_test(grammar_source, test_source)
~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/Lib/test/test_peg_generator/test_c_parser.py", line 141, in run_test
self.build_extension(grammar_source)
~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^
File "/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/Lib/test/test_peg_generator/test_c_parser.py", line 138, in build_extension
generate_parser_c_extension(grammar, Path('.'), library_dir=self.library_dir)
~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/Tools/peg_generator/pegen/testutil.py", line 107, in generate_parser_c_extension
compile_c_extension(
~~~~~~~~~~~~~~~~~~~^
str(source),
^^^^^^^^^^^^
...<3 lines>...
library_dir=library_dir,
^^^^^^^^^^^^^^^^^^^^^^^^
)
^
File "/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/Tools/peg_generator/pegen/build.py", line 236, in compile_c_extension
compiler.link_shared_object(
~~~~~~~~~~~~~~~~~~~~~~~~~~~^
objects,
^^^^^^^^
...<5 lines>...
build_temp=cmd.build_temp,
^^^^^^^^^^^^^^^^^^^^^^^^^^
)
^
File "/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/build/test_python_3852758æ/tempcwd/venv/lib/python3.16/site-packages/setuptools/_distutils/compilers/C/base.py", line 812, in link_shared_object
self.link(
~~~~~~~~~^
Compiler.SHARED_OBJECT,
^^^^^^^^^^^^^^^^^^^^^^^
...<11 lines>...
target_lang,
^^^^^^^^^^^^
)
^
File "/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/build/test_python_3852758æ/tempcwd/venv/lib/python3.16/site-packages/setuptools/_distutils/compilers/C/unix.py", line 309, in link
raise LinkError(msg)
distutils.compilers.C.errors.LinkError: command '/usr/bin/clang' failed with exit code 1
Traceback (most recent call last):
File "/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/Lib/test/support/os_helper.py", line 536, in temp_dir
os.mkdir(path)
~~~~~~~~^^^^^^
OSError: [Errno 28] No space left on device: '/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/build/test_python_3869156æ'
Stack (most recent call last):
File "/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/Lib/runpy.py", line 201, in _run_module_as_main
return _run_code(code, main_globals, None,
File "/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/Lib/runpy.py", line 87, in _run_code
exec(code, run_globals)
File "/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/Lib/test/libregrtest/worker.py", line 141, in <module>
main()
File "/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/Lib/test/libregrtest/worker.py", line 136, in main
with os_helper.temp_cwd(work_dir, quiet=True):
File "/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/Lib/contextlib.py", line 203, in __enter__
for once in self.gen:
File "/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/Lib/test/support/os_helper.py", line 609, in temp_cwd
with temp_dir(path=name, quiet=quiet) as temp_path:
Traceback (most recent call last):
File "/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/Lib/test/test_cext/__init__.py", line 40, in test_build
self.check_build('_test_cext')
~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^
File "/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/Lib/test/test_cext/__init__.py", line 46, in check_build
self._check_build(extension_name, python_exe,
~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^
std=std, limited=limited,
^^^^^^^^^^^^^^^^^^^^^^^^^
abi3t=abi3t)
^^^^^^^^^^^^
File "/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/Lib/test/test_cext/__init__.py", line 93, in _check_build
run_cmd('Install', cmd)
~~~~~~~^^^^^^^^^^^^^^^^
File "/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/Lib/test/test_cext/__init__.py", line 74, in run_cmd
subprocess.run(cmd, check=True, env=env)
~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/Lib/subprocess.py", line 692, in run
raise CalledProcessError(retcode, process.args,
output=stdout, stderr=stderr)
subprocess.CalledProcessError: Command ['/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/build/test_python_3864998æ/tempcwd/env/bin/python', '-X', 'dev', '-m', 'pip', 'install', '--no-build-isolation', '/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/build/test_python_3864998æ/tempcwd/pkg', '-v'] returned non-zero exit status 1.
Traceback (most recent call last):
File "/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/Lib/test/test_zipfile/test_core.py", line 5399, in test_write_while_reading
zipf.writestr('ones', self.data1)
~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^
File "/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/Lib/zipfile/__init__.py", line 2577, in writestr
with self.open(zinfo, mode='w') as dest:
~~~~~~~~~^^^^^^^^^^^^^^^^^
File "/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/Lib/zipfile/__init__.py", line 1395, in close
self._fileobj.seek(self._zinfo.header_offset)
~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^
OSError: [Errno 28] No space left on device
Traceback (most recent call last):
File "/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/Lib/test/test_zipfile/test_core.py", line 2535, in test_quoted_overlap
self.assertEqual(fz.read(), expected)
~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^
AssertionError: b'PK\[273 chars]1\x02-\x00-\x00\x00\x00\x08\x00\xa0lH\x05\xe2\[260 chars]\x00' != b'PK\[273 chars]1\x02\x14\x00\x14\x00\x00\x00\x08\x00\xa0lH\x0[186 chars]\x00'
Traceback (most recent call last):
File "/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/Lib/test/test_zipfile/test_core.py", line 5398, in test_write_while_reading
with zipfile.ZipFile(TESTFN2, 'w', zipfile.ZIP_DEFLATED) as zipf:
~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/Lib/zipfile/__init__.py", line 1998, in __exit__
self.close()
~~~~~~~~~~^^
File "/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/Lib/zipfile/__init__.py", line 2644, in close
self._fpclose(fp)
~~~~~~~~~~~~~^^^^
File "/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/Lib/zipfile/__init__.py", line 2746, in _fpclose
fp.close()
~~~~~~~~^^
OSError: [Errno 28] No space left on device
Traceback (most recent call last):
File "/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/Lib/test/test_cext/__init__.py", line 40, in test_build
self.check_build('_test_cext')
~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^
File "/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/Lib/test/test_cext/__init__.py", line 45, in check_build
with support.setup_venv_with_pip_setuptools(venv_dir) as python_exe:
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^
File "/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/Lib/contextlib.py", line 203, in __enter__
for once in self.gen:
^^^^^^^^
File "/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/Lib/test/support/__init__.py", line 2715, in setup_venv_with_pip_setuptools
run_command(cmd)
~~~~~~~~~~~^^^^^
File "/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/Lib/test/support/__init__.py", line 2690, in run_command
subprocess.run(cmd, check=True)
~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^
File "/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/Lib/subprocess.py", line 692, in run
raise CalledProcessError(retcode, process.args,
output=stdout, stderr=stderr)
subprocess.CalledProcessError: Command ('/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/build/test_python_3864998æ/tempcwd/env/bin/python', '-X', 'dev', '-m', 'pip', 'install', '/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/Lib/test/wheeldata/setuptools-79.0.1-py3-none-any.whl') returned non-zero exit status 1.
Traceback (most recent call last):
File "/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/Lib/test/test_cext/__init__.py", line 119, in test_build_limited_c11
self.check_build('_test_limited_c11_cext', limited=True, std='c11')
~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/Lib/test/test_cext/__init__.py", line 45, in check_build
with support.setup_venv_with_pip_setuptools(venv_dir) as python_exe:
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^
File "/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/Lib/contextlib.py", line 203, in __enter__
for once in self.gen:
^^^^^^^^
File "/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/Lib/test/support/__init__.py", line 2715, in setup_venv_with_pip_setuptools
run_command(cmd)
~~~~~~~~~~~^^^^^
File "/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/Lib/test/support/__init__.py", line 2690, in run_command
subprocess.run(cmd, check=True)
~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^
File "/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/Lib/subprocess.py", line 692, in run
raise CalledProcessError(retcode, process.args,
output=stdout, stderr=stderr)
subprocess.CalledProcessError: Command ('/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/build/test_python_3884314æ/tempcwd/env/bin/python', '-X', 'dev', '-m', 'pip', 'install', '/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/Lib/test/wheeldata/setuptools-79.0.1-py3-none-any.whl') returned non-zero exit status 1.
Traceback (most recent call last):
File "/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/Lib/test/test_peg_generator/test_c_parser.py", line 530, in test_forced_with_group
self.run_test(grammar_source, test_source)
~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/Lib/test/test_peg_generator/test_c_parser.py", line 141, in run_test
self.build_extension(grammar_source)
~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^
File "/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/Lib/test/test_peg_generator/test_c_parser.py", line 138, in build_extension
generate_parser_c_extension(grammar, Path('.'), library_dir=self.library_dir)
~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/Tools/peg_generator/pegen/testutil.py", line 107, in generate_parser_c_extension
compile_c_extension(
~~~~~~~~~~~~~~~~~~~^
str(source),
^^^^^^^^^^^^
...<3 lines>...
library_dir=library_dir,
^^^^^^^^^^^^^^^^^^^^^^^^
)
^
File "/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/Tools/peg_generator/pegen/build.py", line 236, in compile_c_extension
compiler.link_shared_object(
~~~~~~~~~~~~~~~~~~~~~~~~~~~^
objects,
^^^^^^^^
...<5 lines>...
build_temp=cmd.build_temp,
^^^^^^^^^^^^^^^^^^^^^^^^^^
)
^
File "/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/build/test_python_3852758æ/tempcwd/venv/lib/python3.16/site-packages/setuptools/_distutils/compilers/C/base.py", line 812, in link_shared_object
self.link(
~~~~~~~~~^
Compiler.SHARED_OBJECT,
^^^^^^^^^^^^^^^^^^^^^^^
...<11 lines>...
target_lang,
^^^^^^^^^^^^
)
^
File "/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/build/test_python_3852758æ/tempcwd/venv/lib/python3.16/site-packages/setuptools/_distutils/compilers/C/unix.py", line 309, in link
raise LinkError(msg)
distutils.compilers.C.errors.LinkError: command '/usr/bin/clang' failed with exit code 1
Traceback (most recent call last):
File "/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/Lib/test/test_zipfile/test_core.py", line 5179, in test_random_open
self.zip_random_open_test(f, self.compression)
~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^
File "/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/Lib/test/test_zipfile/test_core.py", line 5161, in zip_random_open_test
self.make_test_archive(f, compression)
~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^
File "/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/Lib/test/test_zipfile/test_core.py", line 5109, in make_test_archive
with zipfile.ZipFile(f, "w", compression) as zipfp:
~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^
File "/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/Lib/zipfile/__init__.py", line 1998, in __exit__
self.close()
~~~~~~~~~~^^
File "/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/Lib/zipfile/__init__.py", line 2644, in close
self._fpclose(fp)
~~~~~~~~~~~~~^^^^
File "/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/Lib/zipfile/__init__.py", line 2746, in _fpclose
fp.close()
~~~~~~~~^^
OSError: [Errno 28] No space left on device
Traceback (most recent call last):
File "/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/Lib/test/test_zipfile/test_core.py", line 2304, in test_repack_removed_bad_header_offset
self._prepare_zip_from_test_files(TESTFN, self.test_files)
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^
File "/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/Lib/test/test_zipfile/test_core.py", line 1488, in _prepare_zip_from_test_files
with zipfile.ZipFile(zfname, 'w', cls.compression) as zh:
~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/Lib/zipfile/__init__.py", line 1998, in __exit__
self.close()
~~~~~~~~~~^^
File "/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/Lib/zipfile/__init__.py", line 2644, in close
self._fpclose(fp)
~~~~~~~~~~~~~^^^^
File "/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/Lib/zipfile/__init__.py", line 2746, in _fpclose
fp.close()
~~~~~~~~^^
OSError: [Errno 28] No space left on device
Traceback (most recent call last):
File "/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/Lib/test/test_zipfile/test_core.py", line 199, in test_random_open
self.zip_random_open_test(f, self.compression)
~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^
File "/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/Lib/test/test_zipfile/test_core.py", line 183, in zip_random_open_test
self.make_test_archive(f, compression)
~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^
File "/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/Lib/test/test_zipfile/test_core.py", line 85, in make_test_archive
with zipfp.open('written-open-w', mode='w') as f:
~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/Lib/zipfile/__init__.py", line 1378, in close
raise RuntimeError("File size too large, try using force_zip64")
RuntimeError: File size too large, try using force_zip64
Traceback (most recent call last):
File "/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/Lib/test/test_peg_generator/test_c_parser.py", line 287, in test_nasty_mutually_left_recursive
self.run_test(grammar_source, test_source)
~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/Lib/test/test_peg_generator/test_c_parser.py", line 141, in run_test
self.build_extension(grammar_source)
~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^
File "/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/Lib/test/test_peg_generator/test_c_parser.py", line 138, in build_extension
generate_parser_c_extension(grammar, Path('.'), library_dir=self.library_dir)
~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/Tools/peg_generator/pegen/testutil.py", line 107, in generate_parser_c_extension
compile_c_extension(
~~~~~~~~~~~~~~~~~~~^
str(source),
^^^^^^^^^^^^
...<3 lines>...
library_dir=library_dir,
^^^^^^^^^^^^^^^^^^^^^^^^
)
^
File "/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/Tools/peg_generator/pegen/build.py", line 236, in compile_c_extension
compiler.link_shared_object(
~~~~~~~~~~~~~~~~~~~~~~~~~~~^
objects,
^^^^^^^^
...<5 lines>...
build_temp=cmd.build_temp,
^^^^^^^^^^^^^^^^^^^^^^^^^^
)
^
File "/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/build/test_python_3852758æ/tempcwd/venv/lib/python3.16/site-packages/setuptools/_distutils/compilers/C/base.py", line 812, in link_shared_object
self.link(
~~~~~~~~~^
Compiler.SHARED_OBJECT,
^^^^^^^^^^^^^^^^^^^^^^^
...<11 lines>...
target_lang,
^^^^^^^^^^^^
)
^
File "/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/build/test_python_3852758æ/tempcwd/venv/lib/python3.16/site-packages/setuptools/_distutils/compilers/C/unix.py", line 309, in link
raise LinkError(msg)
distutils.compilers.C.errors.LinkError: command '/usr/bin/clang' failed with exit code 1
Traceback (most recent call last):
File "/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/Lib/test/test_peg_generator/test_c_parser.py", line 493, in test_soft_keywords_parse
self.run_test(grammar_source, test_source)
~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/Lib/test/test_peg_generator/test_c_parser.py", line 141, in run_test
self.build_extension(grammar_source)
~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^
File "/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/Lib/test/test_peg_generator/test_c_parser.py", line 138, in build_extension
generate_parser_c_extension(grammar, Path('.'), library_dir=self.library_dir)
~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/Tools/peg_generator/pegen/testutil.py", line 107, in generate_parser_c_extension
compile_c_extension(
~~~~~~~~~~~~~~~~~~~^
str(source),
^^^^^^^^^^^^
...<3 lines>...
library_dir=library_dir,
^^^^^^^^^^^^^^^^^^^^^^^^
)
^
File "/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/Tools/peg_generator/pegen/build.py", line 236, in compile_c_extension
compiler.link_shared_object(
~~~~~~~~~~~~~~~~~~~~~~~~~~~^
objects,
^^^^^^^^
...<5 lines>...
build_temp=cmd.build_temp,
^^^^^^^^^^^^^^^^^^^^^^^^^^
)
^
File "/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/build/test_python_3852758æ/tempcwd/venv/lib/python3.16/site-packages/setuptools/_distutils/compilers/C/base.py", line 812, in link_shared_object
self.link(
~~~~~~~~~^
Compiler.SHARED_OBJECT,
^^^^^^^^^^^^^^^^^^^^^^^
...<11 lines>...
target_lang,
^^^^^^^^^^^^
)
^
File "/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/build/test_python_3852758æ/tempcwd/venv/lib/python3.16/site-packages/setuptools/_distutils/compilers/C/unix.py", line 309, in link
raise LinkError(msg)
distutils.compilers.C.errors.LinkError: command '/usr/bin/clang' failed with exit code 1
Traceback (most recent call last):
File "/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/Lib/unittest/mock.py", line 1437, in patched
return func(*newargs, **newkeywargs)
File "/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/Lib/test/test_zipfile/test_core.py", line 2384, in test_repack_writing
self._prepare_zip_from_test_files(TESTFN, self.test_files)
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^
File "/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/Lib/test/test_zipfile/test_core.py", line 1488, in _prepare_zip_from_test_files
with zipfile.ZipFile(zfname, 'w', cls.compression) as zh:
~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/Lib/zipfile/__init__.py", line 1998, in __exit__
self.close()
~~~~~~~~~~^^
File "/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/Lib/zipfile/__init__.py", line 2644, in close
self._fpclose(fp)
~~~~~~~~~~~~~^^^^
File "/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/Lib/zipfile/__init__.py", line 2746, in _fpclose
fp.close()
~~~~~~~~^^
OSError: [Errno 28] No space left on device
Traceback (most recent call last):
File "/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/Lib/test/test_zipfile/test_core.py", line 510, in test_writestr_permissions
self.zip_test_writestr_permissions(f, zipfile.ZIP_STORED)
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^
File "/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/Lib/test/test_zipfile/test_core.py", line 500, in zip_test_writestr_permissions
self.make_test_archive(f, compression)
~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^
File "/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/Lib/test/test_zipfile/test_core.py", line 85, in make_test_archive
with zipfp.open('written-open-w', mode='w') as f:
~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/Lib/zipfile/__init__.py", line 1378, in close
raise RuntimeError("File size too large, try using force_zip64")
RuntimeError: File size too large, try using force_zip64
Traceback (most recent call last):
File "/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/Lib/test/test_zipfile/test_core.py", line 2487, in test_full_overlap_different_names
self.assertEqual(fz.read(), expected)
~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^
AssertionError: b'PK\[156 chars]1\x02-\x00-\x00\x00\x00\x08\x00\xa0lH\x05\xe2\[263 chars]\x00' != b'PK\[156 chars]1\x02\x14\x00\x14\x00\x00\x00\x08\x00\xa0lH\x0[189 chars]\x00'
Traceback (most recent call last):
File "/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/build/test_python_3852758æ/tempcwd/venv/lib/python3.16/site-packages/setuptools/_distutils/spawn.py", line 87, in spawn
subprocess.check_call(cmd, env=_inject_macos_ver(env))
~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/Lib/subprocess.py", line 534, in check_call
raise CalledProcessError(retcode, cmd)
subprocess.CalledProcessError: Command ['/usr/bin/ar', 'rcs', '/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/build/test_python_3852758æ/tmpt5ed1f85/libparse.a', '/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/build/test_python_3852758æ/tmpt5ed1f85/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/Python/Python-ast.o', '/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/build/test_python_3852758æ/tmpt5ed1f85/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/Python/asdl.o', '/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/build/test_python_3852758æ/tmpt5ed1f85/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/Parser/lexer/lexer.o', '/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/build/test_python_3852758æ/tmpt5ed1f85/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/Parser/lexer/number.o', '/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/build/test_python_3852758æ/tmpt5ed1f85/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/Parser/lexer/state.o', '/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/build/test_python_3852758æ/tmpt5ed1f85/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/Parser/lexer/string.o', '/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/build/test_python_3852758æ/tmpt5ed1f85/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/Parser/lexer/buffer.o', '/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/build/test_python_3852758æ/tmpt5ed1f85/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/Parser/tokenizer/string_tokenizer.o', '/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/build/test_python_3852758æ/tmpt5ed1f85/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/Parser/tokenizer/file_tokenizer.o', '/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/build/test_python_3852758æ/tmpt5ed1f85/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/Parser/tokenizer/utf8_tokenizer.o', '/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/build/test_python_3852758æ/tmpt5ed1f85/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/Parser/tokenizer/readline_tokenizer.o', '/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/build/test_python_3852758æ/tmpt5ed1f85/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/Parser/tokenizer/helpers.o', '/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/build/test_python_3852758æ/tmpt5ed1f85/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/Parser/pegen.o', '/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/build/test_python_3852758æ/tmpt5ed1f85/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/Parser/pegen_errors.o', '/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/build/test_python_3852758æ/tmpt5ed1f85/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-
Traceback (most recent call last):
File "/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/Lib/test/test_peg_generator/test_c_parser.py", line 199, in test_lookahead
self.run_test(grammar_source, test_source)
~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/Lib/test/test_peg_generator/test_c_parser.py", line 141, in run_test
self.build_extension(grammar_source)
~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^
File "/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/Lib/test/test_peg_generator/test_c_parser.py", line 138, in build_extension
generate_parser_c_extension(grammar, Path('.'), library_dir=self.library_dir)
~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/Tools/peg_generator/pegen/testutil.py", line 107, in generate_parser_c_extension
compile_c_extension(
~~~~~~~~~~~~~~~~~~~^
str(source),
^^^^^^^^^^^^
...<3 lines>...
library_dir=library_dir,
^^^^^^^^^^^^^^^^^^^^^^^^
)
^
File "/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/Tools/peg_generator/pegen/build.py", line 236, in compile_c_extension
compiler.link_shared_object(
~~~~~~~~~~~~~~~~~~~~~~~~~~~^
objects,
^^^^^^^^
...<5 lines>...
build_temp=cmd.build_temp,
^^^^^^^^^^^^^^^^^^^^^^^^^^
)
^
File "/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/build/test_python_3852758æ/tempcwd/venv/lib/python3.16/site-packages/setuptools/_distutils/compilers/C/base.py", line 812, in link_shared_object
self.link(
~~~~~~~~~^
Compiler.SHARED_OBJECT,
^^^^^^^^^^^^^^^^^^^^^^^
...<11 lines>...
target_lang,
^^^^^^^^^^^^
)
^
File "/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/build/test_python_3852758æ/tempcwd/venv/lib/python3.16/site-packages/setuptools/_distutils/compilers/C/unix.py", line 309, in link
raise LinkError(msg)
distutils.compilers.C.errors.LinkError: command '/usr/bin/clang' failed with exit code 1
Traceback (most recent call last):
File "/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/build/test_python_3852758æ/tempcwd/venv/lib/python3.16/site-packages/setuptools/_distutils/spawn.py", line 87, in spawn
subprocess.check_call(cmd, env=_inject_macos_ver(env))
~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/Lib/subprocess.py", line 534, in check_call
raise CalledProcessError(retcode, cmd)
subprocess.CalledProcessError: Command ['/usr/bin/clang', '-shared', './parse.o', '-Wl,--whole-archive', '/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/build/test_python_3852758æ/tmpt5ed1f85/libparse.a', '-Wl,--no-whole-archive', '-o', './parse.cpython-316d-x86_64-linux-gnu.so', '-fno-lto'] returned non-zero exit status 1.
Traceback (most recent call last):
File "/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/Lib/test/test_peg_generator/test_c_parser.py", line 356, in test_if_stmt_action
self.run_test(grammar_source, test_source)
~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/Lib/test/test_peg_generator/test_c_parser.py", line 141, in run_test
self.build_extension(grammar_source)
~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^
File "/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/Lib/test/test_peg_generator/test_c_parser.py", line 138, in build_extension
generate_parser_c_extension(grammar, Path('.'), library_dir=self.library_dir)
~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/Tools/peg_generator/pegen/testutil.py", line 107, in generate_parser_c_extension
compile_c_extension(
~~~~~~~~~~~~~~~~~~~^
str(source),
^^^^^^^^^^^^
...<3 lines>...
library_dir=library_dir,
^^^^^^^^^^^^^^^^^^^^^^^^
)
^
File "/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/Tools/peg_generator/pegen/build.py", line 236, in compile_c_extension
compiler.link_shared_object(
~~~~~~~~~~~~~~~~~~~~~~~~~~~^
objects,
^^^^^^^^
...<5 lines>...
build_temp=cmd.build_temp,
^^^^^^^^^^^^^^^^^^^^^^^^^^
)
^
File "/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/build/test_python_3852758æ/tempcwd/venv/lib/python3.16/site-packages/setuptools/_distutils/compilers/C/base.py", line 812, in link_shared_object
self.link(
~~~~~~~~~^
Compiler.SHARED_OBJECT,
^^^^^^^^^^^^^^^^^^^^^^^
...<11 lines>...
target_lang,
^^^^^^^^^^^^
)
^
File "/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/build/test_python_3852758æ/tempcwd/venv/lib/python3.16/site-packages/setuptools/_distutils/compilers/C/unix.py", line 309, in link
raise LinkError(msg)
distutils.compilers.C.errors.LinkError: command '/usr/bin/clang' failed with exit code 1
Traceback (most recent call last):
File "/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/Lib/test/support/os_helper.py", line 575, in change_cwd
os.chdir(os.path.realpath(path))
~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^
FileNotFoundError: [Errno 2] No such file or directory: '/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/build/test_python_3869156æ'
Stack (most recent call last):
File "/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/Lib/runpy.py", line 201, in _run_module_as_main
return _run_code(code, main_globals, None,
File "/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/Lib/runpy.py", line 87, in _run_code
exec(code, run_globals)
File "/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/Lib/test/libregrtest/worker.py", line 141, in <module>
main()
File "/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/Lib/test/libregrtest/worker.py", line 136, in main
with os_helper.temp_cwd(work_dir, quiet=True):
File "/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/Lib/contextlib.py", line 203, in __enter__
for once in self.gen:
File "/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/Lib/test/support/os_helper.py", line 610, in temp_cwd
with change_cwd(temp_path, quiet=quiet) as cwd_dir:
Traceback (most recent call last):
File "/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/Lib/test/test_zipfile/test_core.py", line 582, in test_append_to_concatenated_zip_file
with io.BytesIO(zipfiledata) as bio, zipfile.ZipFile(bio) as zipfp:
~~~~~~~~~~~~~~~^^^^^
File "/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/Lib/zipfile/__init__.py", line 1955, in __init__
self._RealGetContents()
~~~~~~~~~~~~~~~~~~~~~^^
File "/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/Lib/zipfile/__init__.py", line 2018, in _RealGetContents
endrec = _EndRecData(fp)
File "/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/Lib/zipfile/__init__.py", line 375, in _EndRecData
return _EndRecData64(fpin, filesize - sizeEndCentDir, endrec)
File "/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/Lib/zipfile/__init__.py", line 307, in _EndRecData64
raise BadZipFile("Corrupt zip64 end of central directory locator")
zipfile.BadZipFile: Corrupt zip64 end of central directory locator
Traceback (most recent call last):
File "/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/Lib/test/test_zipfile/test_core.py", line 547, in test_append_to_non_zip_file
with io.BytesIO(zipfiledata) as bio, zipfile.ZipFile(bio) as zipfp:
~~~~~~~~~~~~~~~^^^^^
File "/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/Lib/zipfile/__init__.py", line 1955, in __init__
self._RealGetContents()
~~~~~~~~~~~~~~~~~~~~~^^
File "/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/Lib/zipfile/__init__.py", line 2018, in _RealGetContents
endrec = _EndRecData(fp)
File "/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/Lib/zipfile/__init__.py", line 375, in _EndRecData
return _EndRecData64(fpin, filesize - sizeEndCentDir, endrec)
File "/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/Lib/zipfile/__init__.py", line 307, in _EndRecData64
raise BadZipFile("Corrupt zip64 end of central directory locator")
zipfile.BadZipFile: Corrupt zip64 end of central directory locator
Traceback (most recent call last):
File "/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/Lib/test/test_zipfile/test_core.py", line 178, in test_open_with_pathlike
self.zip_open_test(path, self.compression)
~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^
File "/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/Lib/test/test_zipfile/test_core.py", line 149, in zip_open_test
self.make_test_archive(f, compression)
~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^
File "/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/Lib/test/test_zipfile/test_core.py", line 85, in make_test_archive
with zipfp.open('written-open-w', mode='w') as f:
~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/Lib/zipfile/__init__.py", line 1378, in close
raise RuntimeError("File size too large, try using force_zip64")
RuntimeError: File size too large, try using force_zip64
Traceback (most recent call last):
File "/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/Lib/test/test_tarfile.py", line 3118, in test_test_command_invalid_file
with open(tmpname, 'wb') as f:
~~~~^^^^^^^^^^^^^^^
OSError: [Errno 28] No space left on device
Traceback (most recent call last):
File "/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/Lib/test/test_peg_generator/test_c_parser.py", line 463, in test_error_in_rules
self.run_test(grammar_source, test_source)
~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/Lib/test/test_peg_generator/test_c_parser.py", line 141, in run_test
self.build_extension(grammar_source)
~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^
File "/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/Lib/test/test_peg_generator/test_c_parser.py", line 138, in build_extension
generate_parser_c_extension(grammar, Path('.'), library_dir=self.library_dir)
~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/Tools/peg_generator/pegen/testutil.py", line 107, in generate_parser_c_extension
compile_c_extension(
~~~~~~~~~~~~~~~~~~~^
str(source),
^^^^^^^^^^^^
...<3 lines>...
library_dir=library_dir,
^^^^^^^^^^^^^^^^^^^^^^^^
)
^
File "/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/Tools/peg_generator/pegen/build.py", line 236, in compile_c_extension
compiler.link_shared_object(
~~~~~~~~~~~~~~~~~~~~~~~~~~~^
objects,
^^^^^^^^
...<5 lines>...
build_temp=cmd.build_temp,
^^^^^^^^^^^^^^^^^^^^^^^^^^
)
^
File "/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/build/test_python_3852758æ/tempcwd/venv/lib/python3.16/site-packages/setuptools/_distutils/compilers/C/base.py", line 812, in link_shared_object
self.link(
~~~~~~~~~^
Compiler.SHARED_OBJECT,
^^^^^^^^^^^^^^^^^^^^^^^
...<11 lines>...
target_lang,
^^^^^^^^^^^^
)
^
File "/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/build/test_python_3852758æ/tempcwd/venv/lib/python3.16/site-packages/setuptools/_distutils/compilers/C/unix.py", line 309, in link
raise LinkError(msg)
distutils.compilers.C.errors.LinkError: command '/usr/bin/clang' failed with exit code 1
Traceback (most recent call last):
File "/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/Lib/test/test_zipfile/test_core.py", line 277, in test_readline
self.zip_readline_test(f, self.compression)
~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^
File "/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/Lib/test/test_zipfile/test_core.py", line 266, in zip_readline_test
self.make_test_archive(f, compression)
~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^
File "/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/Lib/test/test_zipfile/test_core.py", line 85, in make_test_archive
with zipfp.open('written-open-w', mode='w') as f:
~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/Lib/zipfile/__init__.py", line 1378, in close
raise RuntimeError("File size too large, try using force_zip64")
RuntimeError: File size too large, try using force_zip64
Traceback (most recent call last):
File "/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/Lib/test/test_zipfile/test_core.py", line 5125, in test_read
self.zip_test(f, self.compression)
~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^
File "/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/Lib/test/test_zipfile/test_core.py", line 5114, in zip_test
self.make_test_archive(f, compression)
~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^
File "/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/Lib/test/test_zipfile/test_core.py", line 5110, in make_test_archive
zipfp.write(TESTFN, "another.name")
~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^
File "/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/Lib/zipfile/__init__.py", line 2544, in write
with open(filename, "rb") as src, self.open(zinfo, 'w') as dest:
~~~~~~~~~^^^^^^^^^^^^
File "/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/Lib/zipfile/__init__.py", line 1369, in close
self._fileobj.write(buf)
~~~~~~~~~~~~~~~~~~~^^^^^
OSError: [Errno 28] No space left on device
Traceback (most recent call last):
File "/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/Lib/test/test_cext/__init__.py", line 115, in test_build_limited
self.check_build('_test_limited_cext', limited=True)
~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/Lib/test/test_cext/__init__.py", line 45, in check_build
with support.setup_venv_with_pip_setuptools(venv_dir) as python_exe:
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^
File "/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/Lib/contextlib.py", line 203, in __enter__
for once in self.gen:
^^^^^^^^
File "/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/Lib/test/support/__init__.py", line 2715, in setup_venv_with_pip_setuptools
run_command(cmd)
~~~~~~~~~~~^^^^^
File "/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/Lib/test/support/__init__.py", line 2690, in run_command
subprocess.run(cmd, check=True)
~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^
File "/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/Lib/subprocess.py", line 692, in run
raise CalledProcessError(retcode, process.args,
output=stdout, stderr=stderr)
subprocess.CalledProcessError: Command ('/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/build/test_python_3884314æ/tempcwd/env/bin/python', '-X', 'dev', '-m', 'pip', 'install', '/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/Lib/test/wheeldata/setuptools-79.0.1-py3-none-any.whl') returned non-zero exit status 1.
Traceback (most recent call last):
File "/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/Lib/test/test_zipfile/test_core.py", line 5158, in test_open
self.zip_open_test(f, self.compression)
~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^
File "/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/Lib/test/test_zipfile/test_core.py", line 5128, in zip_open_test
self.make_test_archive(f, compression)
~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^
File "/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/Lib/test/test_zipfile/test_core.py", line 5111, in make_test_archive
zipfp.write(TESTFN, TESTFN)
~~~~~~~~~~~^^^^^^^^^^^^^^^^
File "/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/Lib/zipfile/__init__.py", line 2544, in write
with open(filename, "rb") as src, self.open(zinfo, 'w') as dest:
~~~~~~~~~^^^^^^^^^^^^
File "/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/Lib/zipfile/__init__.py", line 1369, in close
self._fileobj.write(buf)
~~~~~~~~~~~~~~~~~~~^^^^^
OSError: [Errno 28] No space left on device
Traceback (most recent call last):
File "/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/Lib/test/test_peg_generator/test_c_parser.py", line 239, in test_gather
self.run_test(grammar_source, test_source)
~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/Lib/test/test_peg_generator/test_c_parser.py", line 141, in run_test
self.build_extension(grammar_source)
~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^
File "/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/Lib/test/test_peg_generator/test_c_parser.py", line 138, in build_extension
generate_parser_c_extension(grammar, Path('.'), library_dir=self.library_dir)
~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/Tools/peg_generator/pegen/testutil.py", line 107, in generate_parser_c_extension
compile_c_extension(
~~~~~~~~~~~~~~~~~~~^
str(source),
^^^^^^^^^^^^
...<3 lines>...
library_dir=library_dir,
^^^^^^^^^^^^^^^^^^^^^^^^
)
^
File "/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/Tools/peg_generator/pegen/build.py", line 236, in compile_c_extension
compiler.link_shared_object(
~~~~~~~~~~~~~~~~~~~~~~~~~~~^
objects,
^^^^^^^^
...<5 lines>...
build_temp=cmd.build_temp,
^^^^^^^^^^^^^^^^^^^^^^^^^^
)
^
File "/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/build/test_python_3852758æ/tempcwd/venv/lib/python3.16/site-packages/setuptools/_distutils/compilers/C/base.py", line 812, in link_shared_object
self.link(
~~~~~~~~~^
Compiler.SHARED_OBJECT,
^^^^^^^^^^^^^^^^^^^^^^^
...<11 lines>...
target_lang,
^^^^^^^^^^^^
)
^
File "/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/build/test_python_3852758æ/tempcwd/venv/lib/python3.16/site-packages/setuptools/_distutils/compilers/C/unix.py", line 309, in link
raise LinkError(msg)
distutils.compilers.C.errors.LinkError: command '/usr/bin/clang' failed with exit code 1
Traceback (most recent call last):
File "/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/Lib/test/test_email/test_email.py", line 4441, in test_message_from_binary_file
with open(fn, 'wb') as testfile:
~~~~^^^^^^^^^^
OSError: [Errno 28] No space left on device
Traceback (most recent call last):
File "/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/Lib/test/test_peg_generator/test_c_parser.py", line 227, in test_cut
self.run_test(grammar_source, test_source)
~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/Lib/test/test_peg_generator/test_c_parser.py", line 141, in run_test
self.build_extension(grammar_source)
~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^
File "/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/Lib/test/test_peg_generator/test_c_parser.py", line 138, in build_extension
generate_parser_c_extension(grammar, Path('.'), library_dir=self.library_dir)
~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/Tools/peg_generator/pegen/testutil.py", line 107, in generate_parser_c_extension
compile_c_extension(
~~~~~~~~~~~~~~~~~~~^
str(source),
^^^^^^^^^^^^
...<3 lines>...
library_dir=library_dir,
^^^^^^^^^^^^^^^^^^^^^^^^
)
^
File "/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/Tools/peg_generator/pegen/build.py", line 236, in compile_c_extension
compiler.link_shared_object(
~~~~~~~~~~~~~~~~~~~~~~~~~~~^
objects,
^^^^^^^^
...<5 lines>...
build_temp=cmd.build_temp,
^^^^^^^^^^^^^^^^^^^^^^^^^^
)
^
File "/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/build/test_python_3852758æ/tempcwd/venv/lib/python3.16/site-packages/setuptools/_distutils/compilers/C/base.py", line 812, in link_shared_object
self.link(
~~~~~~~~~^
Compiler.SHARED_OBJECT,
^^^^^^^^^^^^^^^^^^^^^^^
...<11 lines>...
target_lang,
^^^^^^^^^^^^
)
^
File "/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/build/test_python_3852758æ/tempcwd/venv/lib/python3.16/site-packages/setuptools/_distutils/compilers/C/unix.py", line 309, in link
raise LinkError(msg)
distutils.compilers.C.errors.LinkError: command '/usr/bin/clang' failed with exit code 1
Traceback (most recent call last):
File "/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/Lib/test/test_zipfile/test_core.py", line 5100, in setUp
with open(TESTFN, "wb") as fp:
~~~~^^^^^^^^^^^^^^
OSError: [Errno 28] No space left on device
Traceback (most recent call last):
File "/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/Lib/test/test_peg_generator/test_c_parser.py", line 187, in test_c_parser
self.run_test(grammar_source, test_source)
~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/Lib/test/test_peg_generator/test_c_parser.py", line 141, in run_test
self.build_extension(grammar_source)
~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^
File "/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/Lib/test/test_peg_generator/test_c_parser.py", line 138, in build_extension
generate_parser_c_extension(grammar, Path('.'), library_dir=self.library_dir)
~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/Tools/peg_generator/pegen/testutil.py", line 107, in generate_parser_c_extension
compile_c_extension(
~~~~~~~~~~~~~~~~~~~^
str(source),
^^^^^^^^^^^^
...<3 lines>...
library_dir=library_dir,
^^^^^^^^^^^^^^^^^^^^^^^^
)
^
File "/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/Tools/peg_generator/pegen/build.py", line 236, in compile_c_extension
compiler.link_shared_object(
~~~~~~~~~~~~~~~~~~~~~~~~~~~^
objects,
^^^^^^^^
...<5 lines>...
build_temp=cmd.build_temp,
^^^^^^^^^^^^^^^^^^^^^^^^^^
)
^
File "/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/build/test_python_3852758æ/tempcwd/venv/lib/python3.16/site-packages/setuptools/_distutils/compilers/C/base.py", line 812, in link_shared_object
self.link(
~~~~~~~~~^
Compiler.SHARED_OBJECT,
^^^^^^^^^^^^^^^^^^^^^^^
...<11 lines>...
target_lang,
^^^^^^^^^^^^
)
^
File "/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/build/test_python_3852758æ/tempcwd/venv/lib/python3.16/site-packages/setuptools/_distutils/compilers/C/unix.py", line 309, in link
raise LinkError(msg)
distutils.compilers.C.errors.LinkError: command '/usr/bin/clang' failed with exit code 1
Traceback (most recent call last):
File "/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/Lib/test/test_zipfile/test_core.py", line 291, in test_readlines
self.zip_readlines_test(f, self.compression)
~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^
File "/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/Lib/test/test_zipfile/test_core.py", line 280, in zip_readlines_test
self.make_test_archive(f, compression)
~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^
File "/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/Lib/test/test_zipfile/test_core.py", line 85, in make_test_archive
with zipfp.open('written-open-w', mode='w') as f:
~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/Lib/zipfile/__init__.py", line 1378, in close
raise RuntimeError("File size too large, try using force_zip64")
RuntimeError: File size too large, try using force_zip64
Traceback (most recent call last):
File "/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/Lib/test/test_peg_generator/test_c_parser.py", line 402, in test_with_stmt_with_paren
self.run_test(grammar_source, test_source)
~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/Lib/test/test_peg_generator/test_c_parser.py", line 141, in run_test
self.build_extension(grammar_source)
~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^
File "/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/Lib/test/test_peg_generator/test_c_parser.py", line 138, in build_extension
generate_parser_c_extension(grammar, Path('.'), library_dir=self.library_dir)
~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/Tools/peg_generator/pegen/testutil.py", line 107, in generate_parser_c_extension
compile_c_extension(
~~~~~~~~~~~~~~~~~~~^
str(source),
^^^^^^^^^^^^
...<3 lines>...
library_dir=library_dir,
^^^^^^^^^^^^^^^^^^^^^^^^
)
^
File "/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/Tools/peg_generator/pegen/build.py", line 236, in compile_c_extension
compiler.link_shared_object(
~~~~~~~~~~~~~~~~~~~~~~~~~~~^
objects,
^^^^^^^^
...<5 lines>...
build_temp=cmd.build_temp,
^^^^^^^^^^^^^^^^^^^^^^^^^^
)
^
File "/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/build/test_python_3852758æ/tempcwd/venv/lib/python3.16/site-packages/setuptools/_distutils/compilers/C/base.py", line 812, in link_shared_object
self.link(
~~~~~~~~~^
Compiler.SHARED_OBJECT,
^^^^^^^^^^^^^^^^^^^^^^^
...<11 lines>...
target_lang,
^^^^^^^^^^^^
)
^
File "/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/build/test_python_3852758æ/tempcwd/venv/lib/python3.16/site-packages/setuptools/_distutils/compilers/C/unix.py", line 309, in link
raise LinkError(msg)
distutils.compilers.C.errors.LinkError: command '/usr/bin/clang' failed with exit code 1
Traceback (most recent call last):
File "/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/Lib/test/test_peg_generator/test_c_parser.py", line 517, in test_forced
self.run_test(grammar_source, test_source)
~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/Lib/test/test_peg_generator/test_c_parser.py", line 141, in run_test
self.build_extension(grammar_source)
~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^
File "/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/Lib/test/test_peg_generator/test_c_parser.py", line 138, in build_extension
generate_parser_c_extension(grammar, Path('.'), library_dir=self.library_dir)
~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/Tools/peg_generator/pegen/testutil.py", line 107, in generate_parser_c_extension
compile_c_extension(
~~~~~~~~~~~~~~~~~~~^
str(source),
^^^^^^^^^^^^
...<3 lines>...
library_dir=library_dir,
^^^^^^^^^^^^^^^^^^^^^^^^
)
^
File "/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/Tools/peg_generator/pegen/build.py", line 236, in compile_c_extension
compiler.link_shared_object(
~~~~~~~~~~~~~~~~~~~~~~~~~~~^
objects,
^^^^^^^^
...<5 lines>...
build_temp=cmd.build_temp,
^^^^^^^^^^^^^^^^^^^^^^^^^^
)
^
File "/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/build/test_python_3852758æ/tempcwd/venv/lib/python3.16/site-packages/setuptools/_distutils/compilers/C/base.py", line 812, in link_shared_object
self.link(
~~~~~~~~~^
Compiler.SHARED_OBJECT,
^^^^^^^^^^^^^^^^^^^^^^^
...<11 lines>...
target_lang,
^^^^^^^^^^^^
)
^
File "/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/build/test_python_3852758æ/tempcwd/venv/lib/python3.16/site-packages/setuptools/_distutils/compilers/C/unix.py", line 309, in link
raise LinkError(msg)
distutils.compilers.C.errors.LinkError: command '/usr/bin/clang' failed with exit code 1
Traceback (most recent call last):
File "/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/Lib/test/test_peg_generator/test_c_parser.py", line 420, in test_ternary_operator
self.run_test(grammar_source, test_source)
~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/Lib/test/test_peg_generator/test_c_parser.py", line 141, in run_test
self.build_extension(grammar_source)
~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^
File "/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/Lib/test/test_peg_generator/test_c_parser.py", line 138, in build_extension
generate_parser_c_extension(grammar, Path('.'), library_dir=self.library_dir)
~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/Tools/peg_generator/pegen/testutil.py", line 107, in generate_parser_c_extension
compile_c_extension(
~~~~~~~~~~~~~~~~~~~^
str(source),
^^^^^^^^^^^^
...<3 lines>...
library_dir=library_dir,
^^^^^^^^^^^^^^^^^^^^^^^^
)
^
File "/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/Tools/peg_generator/pegen/build.py", line 236, in compile_c_extension
compiler.link_shared_object(
~~~~~~~~~~~~~~~~~~~~~~~~~~~^
objects,
^^^^^^^^
...<5 lines>...
build_temp=cmd.build_temp,
^^^^^^^^^^^^^^^^^^^^^^^^^^
)
^
File "/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/build/test_python_3852758æ/tempcwd/venv/lib/python3.16/site-packages/setuptools/_distutils/compilers/C/base.py", line 812, in link_shared_object
self.link(
~~~~~~~~~^
Compiler.SHARED_OBJECT,
^^^^^^^^^^^^^^^^^^^^^^^
...<11 lines>...
target_lang,
^^^^^^^^^^^^
)
^
File "/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/build/test_python_3852758æ/tempcwd/venv/lib/python3.16/site-packages/setuptools/_distutils/compilers/C/unix.py", line 309, in link
raise LinkError(msg)
distutils.compilers.C.errors.LinkError: command '/usr/bin/clang' failed with exit code 1
Traceback (most recent call last):
File "/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/Lib/test/test_peg_generator/test_c_parser.py", line 262, in test_advanced_left_recursive
self.run_test(grammar_source, test_source)
~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/Lib/test/test_peg_generator/test_c_parser.py", line 141, in run_test
self.build_extension(grammar_source)
~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^
File "/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/Lib/test/test_peg_generator/test_c_parser.py", line 138, in build_extension
generate_parser_c_extension(grammar, Path('.'), library_dir=self.library_dir)
~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/Tools/peg_generator/pegen/testutil.py", line 107, in generate_parser_c_extension
compile_c_extension(
~~~~~~~~~~~~~~~~~~~^
str(source),
^^^^^^^^^^^^
...<3 lines>...
library_dir=library_dir,
^^^^^^^^^^^^^^^^^^^^^^^^
)
^
File "/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/Tools/peg_generator/pegen/build.py", line 197, in compile_c_extension
compiler.create_static_lib(
~~~~~~~~~~~~~~~~~~~~~~~~~~^
objects, extension_name, output_dir=library_dir, debug=cmd.debug
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
)
^
File "/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/build/test_python_3852758æ/tempcwd/venv/lib/python3.16/site-packages/setuptools/_distutils/compilers/C/unix.py", line 234, in create_static_lib
self.spawn(self.archiver + [output_filename] + objects + self.objects)
~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/build/test_python_3852758æ/tempcwd/venv/lib/python3.16/site-packages/setuptools/_distutils/compilers/C/base.py", line 1158, in spawn
spawn(cmd, dry_run=self.dry_run, **kwargs)
~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/build/test_python_3852758æ/tempcwd/venv/lib/python3.16/site-packages/setuptools/_distutils/spawn.py", line 93, in spawn
raise DistutilsExecError(
f"command {_debug(cmd)!r} failed with exit code {err.returncode}"
) from err
distutils.errors.DistutilsExecError: command '/usr/bin/ar' failed with exit code 1
Traceback (most recent call last):
File "/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/Lib/test/test_zipfile/test_core.py", line 263, in test_readline_read
self.zip_readline_read_test(f, self.compression)
~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^
File "/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/Lib/test/test_zipfile/test_core.py", line 241, in zip_readline_read_test
self.make_test_archive(f, compression)
~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^
File "/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/Lib/test/test_zipfile/test_core.py", line 85, in make_test_archive
with zipfp.open('written-open-w', mode='w') as f:
~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/Lib/zipfile/__init__.py", line 1378, in close
raise RuntimeError("File size too large, try using force_zip64")
RuntimeError: File size too large, try using force_zip64
Traceback (most recent call last):
File "/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/Lib/test/test_peg_generator/test_c_parser.py", line 505, in test_soft_keywords_lookahead
self.run_test(grammar_source, test_source)
~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/Lib/test/test_peg_generator/test_c_parser.py", line 141, in run_test
self.build_extension(grammar_source)
~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^
File "/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/Lib/test/test_peg_generator/test_c_parser.py", line 138, in build_extension
generate_parser_c_extension(grammar, Path('.'), library_dir=self.library_dir)
~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/Tools/peg_generator/pegen/testutil.py", line 107, in generate_parser_c_extension
compile_c_extension(
~~~~~~~~~~~~~~~~~~~^
str(source),
^^^^^^^^^^^^
...<3 lines>...
library_dir=library_dir,
^^^^^^^^^^^^^^^^^^^^^^^^
)
^
File "/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/Tools/peg_generator/pegen/build.py", line 236, in compile_c_extension
compiler.link_shared_object(
~~~~~~~~~~~~~~~~~~~~~~~~~~~^
objects,
^^^^^^^^
...<5 lines>...
build_temp=cmd.build_temp,
^^^^^^^^^^^^^^^^^^^^^^^^^^
)
^
File "/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/build/test_python_3852758æ/tempcwd/venv/lib/python3.16/site-packages/setuptools/_distutils/compilers/C/base.py", line 812, in link_shared_object
self.link(
~~~~~~~~~^
Compiler.SHARED_OBJECT,
^^^^^^^^^^^^^^^^^^^^^^^
...<11 lines>...
target_lang,
^^^^^^^^^^^^
)
^
File "/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/build/test_python_3852758æ/tempcwd/venv/lib/python3.16/site-packages/setuptools/_distutils/compilers/C/unix.py", line 309, in link
raise LinkError(msg)
distutils.compilers.C.errors.LinkError: command '/usr/bin/clang' failed with exit code 1
Traceback (most recent call last):
File "/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/Lib/test/test_peg_generator/test_c_parser.py", line 328, in test_pass_stmt_action
self.run_test(grammar_source, test_source)
~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/Lib/test/test_peg_generator/test_c_parser.py", line 141, in run_test
self.build_extension(grammar_source)
~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^
File "/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/Lib/test/test_peg_generator/test_c_parser.py", line 138, in build_extension
generate_parser_c_extension(grammar, Path('.'), library_dir=self.library_dir)
~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/Tools/peg_generator/pegen/testutil.py", line 107, in generate_parser_c_extension
compile_c_extension(
~~~~~~~~~~~~~~~~~~~^
str(source),
^^^^^^^^^^^^
...<3 lines>...
library_dir=library_dir,
^^^^^^^^^^^^^^^^^^^^^^^^
)
^
File "/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/Tools/peg_generator/pegen/build.py", line 236, in compile_c_extension
compiler.link_shared_object(
~~~~~~~~~~~~~~~~~~~~~~~~~~~^
objects,
^^^^^^^^
...<5 lines>...
build_temp=cmd.build_temp,
^^^^^^^^^^^^^^^^^^^^^^^^^^
)
^
File "/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/build/test_python_3852758æ/tempcwd/venv/lib/python3.16/site-packages/setuptools/_distutils/compilers/C/base.py", line 812, in link_shared_object
self.link(
~~~~~~~~~^
Compiler.SHARED_OBJECT,
^^^^^^^^^^^^^^^^^^^^^^^
...<11 lines>...
target_lang,
^^^^^^^^^^^^
)
^
File "/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/build/test_python_3852758æ/tempcwd/venv/lib/python3.16/site-packages/setuptools/_distutils/compilers/C/unix.py", line 309, in link
raise LinkError(msg)
distutils.compilers.C.errors.LinkError: command '/usr/bin/clang' failed with exit code 1
Traceback (most recent call last):
File "/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/Lib/test/test_zipfile/test_core.py", line 737, in setUp
with open(TESTFN, "wb") as fp:
~~~~^^^^^^^^^^^^^^
OSError: [Errno 28] No space left on device
Traceback (most recent call last):
File "/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/Lib/test/test_zipfile/test_core.py", line 218, in test_read1
self.zip_read1_test(f, self.compression)
~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^
File "/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/Lib/test/test_zipfile/test_core.py", line 202, in zip_read1_test
self.make_test_archive(f, compression)
~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^
File "/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/Lib/test/test_zipfile/test_core.py", line 85, in make_test_archive
with zipfp.open('written-open-w', mode='w') as f:
~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/Lib/zipfile/__init__.py", line 1378, in close
raise RuntimeError("File size too large, try using force_zip64")
RuntimeError: File size too large, try using force_zip64
Traceback (most recent call last):
File "/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/Lib/test/test_cext/__init__.py", line 126, in test_build_abi3t
self.check_build('_test_abi3t', abi3t=True)
~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/Lib/test/test_cext/__init__.py", line 45, in check_build
with support.setup_venv_with_pip_setuptools(venv_dir) as python_exe:
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^
File "/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/Lib/contextlib.py", line 203, in __enter__
for once in self.gen:
^^^^^^^^
File "/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/Lib/test/support/__init__.py", line 2715, in setup_venv_with_pip_setuptools
run_command(cmd)
~~~~~~~~~~~^^^^^
File "/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/Lib/test/support/__init__.py", line 2690, in run_command
subprocess.run(cmd, check=True)
~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^
File "/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/Lib/subprocess.py", line 692, in run
raise CalledProcessError(retcode, process.args,
output=stdout, stderr=stderr)
subprocess.CalledProcessError: Command ('/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/build/test_python_3884314æ/tempcwd/env/bin/python', '-X', 'dev', '-m', 'pip', 'install', '/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/Lib/test/wheeldata/setuptools-79.0.1-py3-none-any.whl') returned non-zero exit status 1.
Traceback (most recent call last):
File "/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/Lib/test/test_zipfile/test_core.py", line 146, in test_basic
self.zip_test(f, self.compression)
~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^
File "/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/Lib/test/test_zipfile/test_core.py", line 90, in zip_test
self.make_test_archive(f, compression, compresslevel)
~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/Lib/test/test_zipfile/test_core.py", line 85, in make_test_archive
with zipfp.open('written-open-w', mode='w') as f:
~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/Lib/zipfile/__init__.py", line 1378, in close
raise RuntimeError("File size too large, try using force_zip64")
RuntimeError: File size too large, try using force_zip64
Traceback (most recent call last):
File "/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/Lib/test/test_cext/__init__.py", line 133, in test_build_c99
self.check_build('_test_c99_cext', std='c99')
~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/Lib/test/test_cext/__init__.py", line 45, in check_build
with support.setup_venv_with_pip_setuptools(venv_dir) as python_exe:
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^
File "/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/Lib/contextlib.py", line 203, in __enter__
for once in self.gen:
^^^^^^^^
File "/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/Lib/test/support/__init__.py", line 2715, in setup_venv_with_pip_setuptools
run_command(cmd)
~~~~~~~~~~~^^^^^
File "/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/Lib/test/support/__init__.py", line 2690, in run_command
subprocess.run(cmd, check=True)
~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^
File "/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/Lib/subprocess.py", line 692, in run
raise CalledProcessError(retcode, process.args,
output=stdout, stderr=stderr)
subprocess.CalledProcessError: Command ('/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/build/test_python_3884314æ/tempcwd/env/bin/python', '-X', 'dev', '-m', 'pip', 'install', '/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/Lib/test/wheeldata/setuptools-79.0.1-py3-none-any.whl') returned non-zero exit status 1.
Traceback (most recent call last):
File "/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/Lib/test/test_peg_generator/test_c_parser.py", line 102, in setUpClass
python_exe = stack.enter_context(support.setup_venv_with_pip_setuptools("venv"))
File "/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/Lib/contextlib.py", line 592, in enter_context
result = _enter()
File "/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/Lib/contextlib.py", line 203, in __enter__
for once in self.gen:
^^^^^^^^
File "/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/Lib/test/support/__init__.py", line 2715, in setup_venv_with_pip_setuptools
run_command(cmd)
~~~~~~~~~~~^^^^^
File "/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/Lib/test/support/__init__.py", line 2690, in run_command
subprocess.run(cmd, check=True)
~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^
File "/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/Lib/subprocess.py", line 692, in run
raise CalledProcessError(retcode, process.args,
output=stdout, stderr=stderr)
subprocess.CalledProcessError: Command ('/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/build/test_python_3884312æ/tempcwd/venv/bin/python', '-X', 'dev', '-m', 'pip', 'install', '/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/Lib/test/wheeldata/setuptools-79.0.1-py3-none-any.whl') returned non-zero exit status 1.
Traceback (most recent call last):
File "/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/Lib/zipfile/__init__.py", line 2639, in close
self.fp.seek(self.start_dir)
~~~~~~~~~~~~^^^^^^^^^^^^^^^^
OSError: [Errno 28] No space left on device
Traceback (most recent call last):
File "/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/Lib/test/test_cext/__init__.py", line 122, in test_build_c11
self.check_build('_test_c11_cext', std='c11')
~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/Lib/test/test_cext/__init__.py", line 45, in check_build
with support.setup_venv_with_pip_setuptools(venv_dir) as python_exe:
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^
File "/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/Lib/contextlib.py", line 203, in __enter__
for once in self.gen:
^^^^^^^^
File "/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/Lib/test/support/__init__.py", line 2715, in setup_venv_with_pip_setuptools
run_command(cmd)
~~~~~~~~~~~^^^^^
File "/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/Lib/test/support/__init__.py", line 2690, in run_command
subprocess.run(cmd, check=True)
~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^
File "/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/Lib/subprocess.py", line 692, in run
raise CalledProcessError(retcode, process.args,
output=stdout, stderr=stderr)
subprocess.CalledProcessError: Command ('/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/build/test_python_3864998æ/tempcwd/env/bin/python', '-X', 'dev', '-m', 'pip', 'install', '/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/Lib/test/wheeldata/setuptools-79.0.1-py3-none-any.whl') returned non-zero exit status 1.
Traceback (most recent call last):
File "/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/Lib/test/test_peg_generator/test_c_parser.py", line 251, in test_left_recursion
self.run_test(grammar_source, test_source)
~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/Lib/test/test_peg_generator/test_c_parser.py", line 141, in run_test
self.build_extension(grammar_source)
~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^
File "/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/Lib/test/test_peg_generator/test_c_parser.py", line 138, in build_extension
generate_parser_c_extension(grammar, Path('.'), library_dir=self.library_dir)
~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/Tools/peg_generator/pegen/testutil.py", line 107, in generate_parser_c_extension
compile_c_extension(
~~~~~~~~~~~~~~~~~~~^
str(source),
^^^^^^^^^^^^
...<3 lines>...
library_dir=library_dir,
^^^^^^^^^^^^^^^^^^^^^^^^
)
^
File "/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/Tools/peg_generator/pegen/build.py", line 236, in compile_c_extension
compiler.link_shared_object(
~~~~~~~~~~~~~~~~~~~~~~~~~~~^
objects,
^^^^^^^^
...<5 lines>...
build_temp=cmd.build_temp,
^^^^^^^^^^^^^^^^^^^^^^^^^^
)
^
File "/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/build/test_python_3852758æ/tempcwd/venv/lib/python3.16/site-packages/setuptools/_distutils/compilers/C/base.py", line 812, in link_shared_object
self.link(
~~~~~~~~~^
Compiler.SHARED_OBJECT,
^^^^^^^^^^^^^^^^^^^^^^^
...<11 lines>...
target_lang,
^^^^^^^^^^^^
)
^
File "/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/build/test_python_3852758æ/tempcwd/venv/lib/python3.16/site-packages/setuptools/_distutils/compilers/C/unix.py", line 309, in link
raise LinkError(msg)
distutils.compilers.C.errors.LinkError: command '/usr/bin/clang' failed with exit code 1
Traceback (most recent call last):
File "/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/Lib/test/test_zipfile/test_core.py", line 238, in test_read1_10
self.zip_read1_10_test(f, self.compression)
~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^
File "/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/Lib/test/test_zipfile/test_core.py", line 221, in zip_read1_10_test
self.make_test_archive(f, compression)
~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^
File "/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/Lib/test/test_zipfile/test_core.py", line 85, in make_test_archive
with zipfp.open('written-open-w', mode='w') as f:
~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/Lib/zipfile/__init__.py", line 1378, in close
raise RuntimeError("File size too large, try using force_zip64")
RuntimeError: File size too large, try using force_zip64
Traceback (most recent call last):
File "/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/Lib/test/test_peg_generator/test_c_parser.py", line 313, in test_gather_action_ast
self.run_test(grammar_source, test_source)
~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/Lib/test/test_peg_generator/test_c_parser.py", line 141, in run_test
self.build_extension(grammar_source)
~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^
File "/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/Lib/test/test_peg_generator/test_c_parser.py", line 138, in build_extension
generate_parser_c_extension(grammar, Path('.'), library_dir=self.library_dir)
~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/Tools/peg_generator/pegen/testutil.py", line 107, in generate_parser_c_extension
compile_c_extension(
~~~~~~~~~~~~~~~~~~~^
str(source),
^^^^^^^^^^^^
...<3 lines>...
library_dir=library_dir,
^^^^^^^^^^^^^^^^^^^^^^^^
)
^
File "/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/Tools/peg_generator/pegen/build.py", line 236, in compile_c_extension
compiler.link_shared_object(
~~~~~~~~~~~~~~~~~~~~~~~~~~~^
objects,
^^^^^^^^
...<5 lines>...
build_temp=cmd.build_temp,
^^^^^^^^^^^^^^^^^^^^^^^^^^
)
^
File "/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/build/test_python_3852758æ/tempcwd/venv/lib/python3.16/site-packages/setuptools/_distutils/compilers/C/base.py", line 812, in link_shared_object
self.link(
~~~~~~~~~^
Compiler.SHARED_OBJECT,
^^^^^^^^^^^^^^^^^^^^^^^
...<11 lines>...
target_lang,
^^^^^^^^^^^^
)
^
File "/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/build/test_python_3852758æ/tempcwd/venv/lib/python3.16/site-packages/setuptools/_distutils/compilers/C/unix.py", line 309, in link
raise LinkError(msg)
distutils.compilers.C.errors.LinkError: command '/usr/bin/clang' failed with exit code 1
Traceback (most recent call last):
File "/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/Lib/test/test_cext/__init__.py", line 119, in test_build_limited_c11
self.check_build('_test_limited_c11_cext', limited=True, std='c11')
~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/Lib/test/test_cext/__init__.py", line 45, in check_build
with support.setup_venv_with_pip_setuptools(venv_dir) as python_exe:
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^
File "/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/Lib/contextlib.py", line 203, in __enter__
for once in self.gen:
^^^^^^^^
File "/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/Lib/test/support/__init__.py", line 2715, in setup_venv_with_pip_setuptools
run_command(cmd)
~~~~~~~~~~~^^^^^
File "/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/Lib/test/support/__init__.py", line 2690, in run_command
subprocess.run(cmd, check=True)
~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^
File "/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/Lib/subprocess.py", line 692, in run
raise CalledProcessError(retcode, process.args,
output=stdout, stderr=stderr)
subprocess.CalledProcessError: Command ('/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/build/test_python_3864998æ/tempcwd/env/bin/python', '-X', 'dev', '-m', 'pip', 'install', '/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/Lib/test/wheeldata/setuptools-79.0.1-py3-none-any.whl') returned non-zero exit status 1.
Traceback (most recent call last):
File "/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/Lib/test/test_peg_generator/test_c_parser.py", line 436, in test_syntax_error_for_string
self.run_test(grammar_source, test_source)
~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/Lib/test/test_peg_generator/test_c_parser.py", line 141, in run_test
self.build_extension(grammar_source)
~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^
File "/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/Lib/test/test_peg_generator/test_c_parser.py", line 138, in build_extension
generate_parser_c_extension(grammar, Path('.'), library_dir=self.library_dir)
~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/Tools/peg_generator/pegen/testutil.py", line 107, in generate_parser_c_extension
compile_c_extension(
~~~~~~~~~~~~~~~~~~~^
str(source),
^^^^^^^^^^^^
...<3 lines>...
library_dir=library_dir,
^^^^^^^^^^^^^^^^^^^^^^^^
)
^
File "/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/Tools/peg_generator/pegen/build.py", line 236, in compile_c_extension
compiler.link_shared_object(
~~~~~~~~~~~~~~~~~~~~~~~~~~~^
objects,
^^^^^^^^
...<5 lines>...
build_temp=cmd.build_temp,
^^^^^^^^^^^^^^^^^^^^^^^^^^
)
^
File "/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/build/test_python_3852758æ/tempcwd/venv/lib/python3.16/site-packages/setuptools/_distutils/compilers/C/base.py", line 812, in link_shared_object
self.link(
~~~~~~~~~^
Compiler.SHARED_OBJECT,
^^^^^^^^^^^^^^^^^^^^^^^
...<11 lines>...
target_lang,
^^^^^^^^^^^^
)
^
File "/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/build/test_python_3852758æ/tempcwd/venv/lib/python3.16/site-packages/setuptools/_distutils/compilers/C/unix.py", line 309, in link
raise LinkError(msg)
distutils.compilers.C.errors.LinkError: command '/usr/bin/clang' failed with exit code 1
Traceback (most recent call last):
File "/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/Lib/test/test_peg_generator/test_c_parser.py", line 211, in test_negative_lookahead
self.run_test(grammar_source, test_source)
~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/Lib/test/test_peg_generator/test_c_parser.py", line 141, in run_test
self.build_extension(grammar_source)
~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^
File "/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/Lib/test/test_peg_generator/test_c_parser.py", line 138, in build_extension
generate_parser_c_extension(grammar, Path('.'), library_dir=self.library_dir)
~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/Tools/peg_generator/pegen/testutil.py", line 107, in generate_parser_c_extension
compile_c_extension(
~~~~~~~~~~~~~~~~~~~^
str(source),
^^^^^^^^^^^^
...<3 lines>...
library_dir=library_dir,
^^^^^^^^^^^^^^^^^^^^^^^^
)
^
File "/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/Tools/peg_generator/pegen/build.py", line 236, in compile_c_extension
compiler.link_shared_object(
~~~~~~~~~~~~~~~~~~~~~~~~~~~^
objects,
^^^^^^^^
...<5 lines>...
build_temp=cmd.build_temp,
^^^^^^^^^^^^^^^^^^^^^^^^^^
)
^
File "/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/build/test_python_3852758æ/tempcwd/venv/lib/python3.16/site-packages/setuptools/_distutils/compilers/C/base.py", line 812, in link_shared_object
self.link(
~~~~~~~~~^
Compiler.SHARED_OBJECT,
^^^^^^^^^^^^^^^^^^^^^^^
...<11 lines>...
target_lang,
^^^^^^^^^^^^
)
^
File "/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/build/test_python_3852758æ/tempcwd/venv/lib/python3.16/site-packages/setuptools/_distutils/compilers/C/unix.py", line 309, in link
raise LinkError(msg)
distutils.compilers.C.errors.LinkError: command '/usr/bin/clang' failed with exit code 1
Traceback (most recent call last):
File "/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/Lib/test/test_zipfile/test_core.py", line 5101, in setUp
fp.write(self.data)
~~~~~~~~^^^^^^^^^^^
OSError: [Errno 28] No space left on device
Traceback (most recent call last):
File "/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/Lib/test/test_zipfile/test_core.py", line 75, in setUp
with open(TESTFN, "wb") as fp:
~~~~^^^^^^^^^^^^^^
OSError: [Errno 28] No space left on device
Traceback (most recent call last):
File "/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/build/test_python_3852758æ/tempcwd/venv/lib/python3.16/site-packages/setuptools/_distutils/compilers/C/unix.py", line 307, in link
self.spawn(linker + ld_args)
~~~~~~~~~~^^^^^^^^^^^^^^^^^^
File "/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/build/test_python_3852758æ/tempcwd/venv/lib/python3.16/site-packages/setuptools/_distutils/compilers/C/base.py", line 1158, in spawn
spawn(cmd, dry_run=self.dry_run, **kwargs)
~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/build/test_python_3852758æ/tempcwd/venv/lib/python3.16/site-packages/setuptools/_distutils/spawn.py", line 93, in spawn
raise DistutilsExecError(
f"command {_debug(cmd)!r} failed with exit code {err.returncode}"
) from err
distutils.errors.DistutilsExecError: command '/usr/bin/clang' failed with exit code 1
Traceback (most recent call last):
File "/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/Lib/test/test_zipfile/test_core.py", line 304, in test_iterlines
self.zip_iterlines_test(f, self.compression)
~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^
File "/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/Lib/test/test_zipfile/test_core.py", line 294, in zip_iterlines_test
self.make_test_archive(f, compression)
~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^
File "/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/Lib/test/test_zipfile/test_core.py", line 85, in make_test_archive
with zipfp.open('written-open-w', mode='w') as f:
~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/Lib/zipfile/__init__.py", line 1378, in close
raise RuntimeError("File size too large, try using force_zip64")
RuntimeError: File size too large, try using force_zip64
Traceback (most recent call last):
File "/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/Lib/test/test_zipfile/test_core.py", line 2316, in test_repack_removed_bad_header_offset2
self._prepare_zip_from_test_files(TESTFN, self.test_files)
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^
File "/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/Lib/test/test_zipfile/test_core.py", line 1488, in _prepare_zip_from_test_files
with zipfile.ZipFile(zfname, 'w', cls.compression) as zh:
~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/Lib/zipfile/__init__.py", line 1998, in __exit__
self.close()
~~~~~~~~~~^^
File "/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/Lib/zipfile/__init__.py", line 2644, in close
self._fpclose(fp)
~~~~~~~~~~~~~^^^^
File "/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/Lib/zipfile/__init__.py", line 2746, in _fpclose
fp.close()
~~~~~~~~^^
OSError: [Errno 28] No space left on device
Traceback (most recent call last):
File "/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/Lib/test/test_zipfile/test_core.py", line 174, in test_open
self.zip_open_test(f, self.compression)
~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^
File "/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/Lib/test/test_zipfile/test_core.py", line 149, in zip_open_test
self.make_test_archive(f, compression)
~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^
File "/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/Lib/test/test_zipfile/test_core.py", line 85, in make_test_archive
with zipfp.open('written-open-w', mode='w') as f:
~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/Lib/zipfile/__init__.py", line 1378, in close
raise RuntimeError("File size too large, try using force_zip64")
RuntimeError: File size too large, try using force_zip64
Traceback (most recent call last):
File "/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/Lib/test/test_zipfile/test_core.py", line 5110, in make_test_archive
zipfp.write(TESTFN, "another.name")
~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^
File "/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/Lib/zipfile/__init__.py", line 2544, in write
with open(filename, "rb") as src, self.open(zinfo, 'w') as dest:
~~~~~~~~~^^^^^^^^^^^^
File "/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/Lib/zipfile/__init__.py", line 1395, in close
self._fileobj.seek(self._zinfo.header_offset)
~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^
OSError: [Errno 28] No space left on device
Traceback (most recent call last):
File "/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/Lib/test/test_cext/__init__.py", line 40, in test_build
self.check_build('_test_cext')
~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^
File "/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/Lib/test/test_cext/__init__.py", line 45, in check_build
with support.setup_venv_with_pip_setuptools(venv_dir) as python_exe:
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^
File "/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/Lib/contextlib.py", line 203, in __enter__
for once in self.gen:
^^^^^^^^
File "/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/Lib/test/support/__init__.py", line 2700, in setup_venv_with_pip_setuptools
run_command(cmd)
~~~~~~~~~~~^^^^^
File "/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/Lib/test/support/__init__.py", line 2690, in run_command
subprocess.run(cmd, check=True)
~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^
File "/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/Lib/subprocess.py", line 692, in run
raise CalledProcessError(retcode, process.args,
output=stdout, stderr=stderr)
subprocess.CalledProcessError: Command ['/home/buildbot-worker/cstratak-fedora-stable-x86_64/3.x.cstratak-fedora-stable-x86_64.clang/build/python', '-X', 'dev', '-m', 'venv', 'env'] returned non-zero exit status 1.
|
Sorry, something went wrong.
⚠️⚠️⚠️ Buildbot failure ⚠️⚠️⚠️Hi! The buildbot AMD64 Fedora Stable Clang Installed 3.x (tier-2) has failed when building commit d856402. What do you need to do:
You can take a look at the buildbot page here: https://buildbot.python.org/#/builders/350/builds/10281 Summary of the results of the build (if available): Click to see traceback logsNote: switching to 'd856402e7176e5a03c5c578f0efc1be968be3257'.
You are in 'detached HEAD' state. You can look around, make experimental
changes and commit them, and you can discard any commits you make in this
state without impacting any branches by switching back to a branch.
If you want to create a new branch to retain commits you create, you may
do so (now or later) by using -c with the switch command. Example:
git switch -c <new-branch-name>
Or undo this operation with:
git switch -
Turn off this advice by setting config variable advice.detachedHead to false
HEAD is now at d856402e7176 gh-156115: Use the simulator deployment-target flag for iOS simulator builds (#156116)
Switched to and reset branch 'main'
In file included from ./Modules/expat/xmltok.c:312:
./Modules/expat/xmltok_impl.c:285:5: warning: fallthrough annotation in unreachable code [-Wunreachable-code-fallthrough]
285 | CHECK_NMSTRT_CASES(enc, ptr, end, nextTokPtr)
| ^
./Modules/expat/xmltok_impl.c:118:5: note: expanded from macro 'CHECK_NMSTRT_CASES'
118 | EXPAT_FALLTHROUGH; \
| ^
./Modules/expat/fallthrough.h:47:33: note: expanded from macro 'EXPAT_FALLTHROUGH'
47 | # define EXPAT_FALLTHROUGH __attribute__((fallthrough))
| ^
In file included from ./Modules/expat/xmltok.c:312:
./Modules/expat/xmltok_impl.c:292:7: warning: fallthrough annotation in unreachable code [-Wunreachable-code-fallthrough]
292 | CHECK_NAME_CASES(enc, ptr, end, nextTokPtr)
| ^
./Modules/expat/xmltok_impl.c:89:5: note: expanded from macro 'CHECK_NAME_CASES'
89 | EXPAT_FALLTHROUGH; \
| ^
./Modules/expat/fallthrough.h:47:33: note: expanded from macro 'EXPAT_FALLTHROUGH'
47 | # define EXPAT_FALLTHROUGH __attribute__((fallthrough))
| ^
In file included from ./Modules/expat/xmltok.c:312:
./Modules/expat/xmltok_impl.c:438:5: warning: fallthrough annotation in unreachable code [-Wunreachable-code-fallthrough]
438 | CHECK_NMSTRT_CASES(enc, ptr, end, nextTokPtr)
| ^
./Modules/expat/xmltok_impl.c:118:5: note: expanded from macro 'CHECK_NMSTRT_CASES'
118 | EXPAT_FALLTHROUGH; \
| ^
./Modules/expat/fallthrough.h:47:33: note: expanded from macro 'EXPAT_FALLTHROUGH'
47 | # define EXPAT_FALLTHROUGH __attribute__((fallthrough))
| ^
In file included from ./Modules/expat/xmltok.c:312:
./Modules/expat/xmltok_impl.c:445:7: warning: fallthrough annotation in unreachable code [-Wunreachable-code-fallthrough]
445 | CHECK_NAME_CASES(enc, ptr, end, nextTokPtr)
| ^
./Modules/expat/xmltok_impl.c:89:5: note: expanded from macro 'CHECK_NAME_CASES'
89 | EXPAT_FALLTHROUGH; \
| ^
./Modules/expat/fallthrough.h:47:33: note: expanded from macro 'EXPAT_FALLTHROUGH'
47 | # define EXPAT_FALLTHROUGH __attribute__((fallthrough))
| ^
In file included from ./Modules/expat/xmltok.c:312:
./Modules/expat/xmltok_impl.c:551:5: warning: fallthrough annotation in unreachable code [-Wunreachable-code-fallthrough]
551 | CHECK_NMSTRT_CASES(enc, ptr, end, nextTokPtr)
| ^
./Modules/expat/xmltok_impl.c:118:5: note: expanded from macro 'CHECK_NMSTRT_CASES'
118 | EXPAT_FALLTHROUGH; \
| ^
./Modules/expat/fallthrough.h:47:33: note: expanded from macro 'EXPAT_FALLTHROUGH'
47 | # define EXPAT_FALLTHROUGH __attribute__((fallthrough))
| ^
In file included from ./Modules/expat/xmltok.c:312:
./Modules/expat/xmltok_impl.c:560:7: warning: fallthrough annotation in unreachable code [-Wunreachable-code-fallthrough]
560 | CHECK_NAME_CASES(enc, ptr, end, nextTokPtr)
| ^
./Modules/expat/xmltok_impl.c:89:5: note: expanded from macro 'CHECK_NAME_CASES'
89 | EXPAT_FALLTHROUGH; \
| ^
./Modules/expat/fallthrough.h:47:33: note: expanded from macro 'EXPAT_FALLTHROUGH'
47 | # define EXPAT_FALLTHROUGH __attribute__((fallthrough))
| ^
In file included from ./Modules/expat/xmltok.c:312:
./Modules/expat/xmltok_impl.c:582:7: warning: fallthrough annotation in unreachable code [-Wunreachable-code-fallthrough]
582 | CHECK_NAME_CASES(enc, ptr, end, nextTokPtr)
| ^
./Modules/expat/xmltok_impl.c:89:5: note: expanded from macro 'CHECK_NAME_CASES'
89 | EXPAT_FALLTHROUGH; \
| ^
./Modules/expat/fallthrough.h:47:33: note: expanded from macro 'EXPAT_FALLTHROUGH'
47 | # define EXPAT_FALLTHROUGH __attribute__((fallthrough))
| ^
In file included from ./Modules/expat/xmltok.c:312:
./Modules/expat/xmltok_impl.c:593:9: warning: fallthrough annotation in unreachable code [-Wunreachable-code-fallthrough]
593 | CHECK_NMSTRT_CASES(enc, ptr, end, nextTokPtr)
| ^
./Modules/expat/xmltok_impl.c:118:5: note: expanded from macro 'CHECK_NMSTRT_CASES'
118 | EXPAT_FALLTHROUGH; \
| ^
./Modules/expat/fallthrough.h:47:33: note: expanded from macro 'EXPAT_FALLTHROUGH'
47 | # define EXPAT_FALLTHROUGH __attribute__((fallthrough))
| ^
In file included from ./Modules/expat/xmltok.c:312:
./Modules/expat/xmltok_impl.c:690:11: warning: fallthrough annotation in unreachable code [-Wunreachable-code-fallthrough]
690 | CHECK_NMSTRT_CASES(enc, ptr, end, nextTokPtr)
| ^
./Modules/expat/xmltok_impl.c:118:5: note: expanded from macro 'CHECK_NMSTRT_CASES'
118 | EXPAT_FALLTHROUGH; \
| ^
./Modules/expat/fallthrough.h:47:33: note: expanded from macro 'EXPAT_FALLTHROUGH'
47 | # define EXPAT_FALLTHROUGH __attribute__((fallthrough))
| ^
In file included from ./Modules/expat/xmltok.c:312:
./Modules/expat/xmltok_impl.c:735:5: warning: fallthrough annotation in unreachable code [-Wunreachable-code-fallthrough]
735 | CHECK_NMSTRT_CASES(enc, ptr, end, nextTokPtr)
| ^
./Modules/expat/xmltok_impl.c:118:5: note: expanded from macro 'CHECK_NMSTRT_CASES'
118 | EXPAT_FALLTHROUGH; \
| ^
./Modules/expat/fallthrough.h:47:33: note: expanded from macro 'EXPAT_FALLTHROUGH'
47 | # define EXPAT_FALLTHROUGH __attribute__((fallthrough))
| ^
In file included from ./Modules/expat/xmltok.c:312:
./Modules/expat/xmltok_impl.c:761:7: warning: fallthrough annotation in unreachable code [-Wunreachable-code-fallthrough]
761 | CHECK_NAME_CASES(enc, ptr, end, nextTokPtr)
| ^
./Modules/expat/xmltok_impl.c:89:5: note: expanded from macro 'CHECK_NAME_CASES'
89 | EXPAT_FALLTHROUGH; \
| ^
./Modules/expat/fallthrough.h:47:33: note: expanded from macro 'EXPAT_FALLTHROUGH'
47 | # define EXPAT_FALLTHROUGH __attribute__((fallthrough))
| ^
In file included from ./Modules/expat/xmltok.c:312:
./Modules/expat/xmltok_impl.c:772:9: warning: fallthrough annotation in unreachable code [-Wunreachable-code-fallthrough]
772 | CHECK_NMSTRT_CASES(enc, ptr, end, nextTokPtr)
| ^
./Modules/expat/xmltok_impl.c:118:5: note: expanded from macro 'CHECK_NMSTRT_CASES'
118 | EXPAT_FALLTHROUGH; \
| ^
./Modules/expat/fallthrough.h:47:33: note: expanded from macro 'EXPAT_FALLTHROUGH'
47 | # define EXPAT_FALLTHROUGH __attribute__((fallthrough))
| ^
In file included from ./Modules/expat/xmltok.c:312:
./Modules/expat/xmltok_impl.c:785:11: warning: fallthrough annotation in unreachable code [-Wunreachable-code-fallthrough]
785 | CHECK_NMSTRT_CASES(enc, ptr, end, nextTokPtr)
| ^
./Modules/expat/xmltok_impl.c:118:5: note: expanded from macro 'CHECK_NMSTRT_CASES'
118 | EXPAT_FALLTHROUGH; \
| ^
./Modules/expat/fallthrough.h:47:33: note: expanded from macro 'EXPAT_FALLTHROUGH'
47 | # define EXPAT_FALLTHROUGH __attribute__((fallthrough))
| ^
In file included from ./Modules/expat/xmltok.c:312:
./Modules/expat/xmltok_impl.c:930:5: warning: fallthrough annotation in unreachable code [-Wunreachable-code-fallthrough]
930 | CHECK_NMSTRT_CASES(enc, ptr, end, nextTokPtr)
| ^
./Modules/expat/xmltok_impl.c:118:5: note: expanded from macro 'CHECK_NMSTRT_CASES'
118 | EXPAT_FALLTHROUGH; \
| ^
./Modules/expat/fallthrough.h:47:33: note: expanded from macro 'EXPAT_FALLTHROUGH'
47 | # define EXPAT_FALLTHROUGH __attribute__((fallthrough))
| ^
In file included from ./Modules/expat/xmltok.c:312:
./Modules/expat/xmltok_impl.c:943:7: warning: fallthrough annotation in unreachable code [-Wunreachable-code-fallthrough]
943 | CHECK_NAME_CASES(enc, ptr, end, nextTokPtr)
| ^
./Modules/expat/xmltok_impl.c:89:5: note: expanded from macro 'CHECK_NAME_CASES'
89 | EXPAT_FALLTHROUGH; \
| ^
./Modules/expat/fallthrough.h:47:33: note: expanded from macro 'EXPAT_FALLTHROUGH'
47 | # define EXPAT_FALLTHROUGH __attribute__((fallthrough))
| ^
In file included from ./Modules/expat/xmltok.c:312:
./Modules/expat/xmltok_impl.c:960:5: warning: fallthrough annotation in unreachable code [-Wunreachable-code-fallthrough]
960 | CHECK_NMSTRT_CASES(enc, ptr, end, nextTokPtr)
| ^
./Modules/expat/xmltok_impl.c:118:5: note: expanded from macro 'CHECK_NMSTRT_CASES'
118 | EXPAT_FALLTHROUGH; \
| ^
./Modules/expat/fallthrough.h:47:33: note: expanded from macro 'EXPAT_FALLTHROUGH'
47 | # define EXPAT_FALLTHROUGH __attribute__((fallthrough))
| ^
In file included from ./Modules/expat/xmltok.c:312:
./Modules/expat/xmltok_impl.c:967:7: warning: fallthrough annotation in unreachable code [-Wunreachable-code-fallthrough]
967 | CHECK_NAME_CASES(enc, ptr, end, nextTokPtr)
| ^
./Modules/expat/xmltok_impl.c:89:5: note: expanded from macro 'CHECK_NAME_CASES'
89 | EXPAT_FALLTHROUGH; \
| ^
./Modules/expat/fallthrough.h:47:33: note: expanded from macro 'EXPAT_FALLTHROUGH'
47 | # define EXPAT_FALLTHROUGH __attribute__((fallthrough))
| ^
In file included from ./Modules/expat/xmltok.c:312:
./Modules/expat/xmltok_impl.c:1202:7: warning: fallthrough annotation in unreachable code [-Wunreachable-code-fallthrough]
1202 | CHECK_NAME_CASES(enc, ptr, end, nextTokPtr)
| ^
./Modules/expat/xmltok_impl.c:89:5: note: expanded from macro 'CHECK_NAME_CASES'
89 | EXPAT_FALLTHROUGH; \
| ^
./Modules/expat/fallthrough.h:47:33: note: expanded from macro 'EXPAT_FALLTHROUGH'
47 | # define EXPAT_FALLTHROUGH __attribute__((fallthrough))
| ^
In file included from ./Modules/expat/xmltok.c:312:
./Modules/expat/xmltok_impl.c:1222:11: warning: fallthrough annotation in unreachable code [-Wunreachable-code-fallthrough]
1222 | CHECK_NAME_CASES(enc, ptr, end, nextTokPtr)
| ^
./Modules/expat/xmltok_impl.c:89:5: note: expanded from macro 'CHECK_NAME_CASES'
89 | EXPAT_FALLTHROUGH; \
| ^
./Modules/expat/fallthrough.h:47:33: note: expanded from macro 'EXPAT_FALLTHROUGH'
47 | # define EXPAT_FALLTHROUGH __attribute__((fallthrough))
| ^
19 warnings generated.
ar: unable to copy file 'libpython3.16.a'; reason: No space left on device
make: *** [Makefile:1164: libpython3.16.a] Error 1
chmod: cannot access 'target/': No such file or directory |
Sorry, something went wrong.
⚠️⚠️⚠️ Buildbot failure ⚠️⚠️⚠️Hi! The buildbot AMD64 Fedora Stable LTO + PGO 3.x (tier-1) has failed when building commit d856402. What do you need to do:
You can take a look at the buildbot page here: https://buildbot.python.org/#/builders/29/builds/10654 Summary of the results of the build (if available): Click to see traceback logsNote: switching to 'd856402e7176e5a03c5c578f0efc1be968be3257'.
You are in 'detached HEAD' state. You can look around, make experimental
changes and commit them, and you can discard any commits you make in this
state without impacting any branches by switching back to a branch.
If you want to create a new branch to retain commits you create, you may
do so (now or later) by using -c with the switch command. Example:
git switch -c <new-branch-name>
Or undo this operation with:
git switch -
Turn off this advice by setting config variable advice.detachedHead to false
HEAD is now at d856402e717 gh-156115: Use the simulator deployment-target flag for iOS simulator builds (#156116)
Switched to and reset branch 'main'
find: ‘build’: No such file or directory
find: ‘build’: No such file or directory
find: ‘build’: No such file or directory
find: ‘build’: No such file or directory
make[2]: [Makefile:3476: clean-retain-profile] Error 1 (ignored)
./Modules/socketmodule.c: In function ‘getsockaddrarg’:
./Modules/socketmodule.c:2664:9: warning: ‘strncpy’ specified bound 64 equals destination size [-Wstringop-truncation]
2664 | strncpy((char *)sa->salg_name, name, sizeof(sa->salg_name));
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/tmp/ccnAfgrW.s: Assembler messages:
/tmp/ccnAfgrW.s: Fatal error: Objects/exceptions.o: No space left on device
make[2]: *** [Makefile:3382: Objects/exceptions.o] Error 1
make[2]: *** Waiting for unfinished jobs....
/tmp/ccC4MAYj.s: Assembler messages:
/tmp/ccC4MAYj.s: Fatal error: can't write 3911 bytes to section .gnu.debuglto_.debug_str of Objects/frameobject.o: 'No space left on device'
/tmp/ccC4MAYj.s: Fatal error: Objects/frameobject.o: No such file or directory
make[2]: *** [Makefile:3382: Objects/frameobject.o] Error 1
/tmp/cclrJApI.s: Assembler messages:
/tmp/cclrJApI.s: Fatal error: can't write 3911 bytes to section .gnu.debuglto_.debug_str of Objects/odictobject.o: 'No space left on device'
/tmp/cclrJApI.s: Fatal error: Objects/odictobject.o: No such file or directory
make[2]: *** [Makefile:3382: Objects/odictobject.o] Error 1
/tmp/ccpAtrfP.s: Assembler messages:
/tmp/ccpAtrfP.s: Fatal error: can't write 3912 bytes to section .gnu.debuglto_.debug_info of Modules/_testinternalcapi/interpreter.o: 'No space left on device'
/tmp/ccpAtrfP.s: Fatal error: Modules/_testinternalcapi/interpreter.o: No such file or directory
make[2]: *** [Makefile:3840: Modules/_testinternalcapi/interpreter.o] Error 1
/tmp/cckucbET.s: Assembler messages:
/tmp/cckucbET.s: Fatal error: can't write 3910 bytes to section .gnu.debuglto_.debug_info of Objects/listobject.o: 'No space left on device'
/tmp/cckucbET.s: Fatal error: Objects/listobject.o: No such file or directory
make[2]: *** [Makefile:3382: Objects/listobject.o] Error 1
/tmp/ccqsVvPX.s: Assembler messages:
/tmp/ccqsVvPX.s: Fatal error: can't write 3910 bytes to section .gnu.debuglto_.debug_info of Objects/dictobject.o: 'No space left on device'
/tmp/ccqsVvPX.s: Fatal error: Objects/dictobject.o: No such file or directory
make[2]: *** [Makefile:3382: Objects/dictobject.o] Error 1
/tmp/ccbaAM5X.s: Assembler messages:
/tmp/ccbaAM5X.s: Fatal error: can't write 3912 bytes to section .gnu.debuglto_.debug_info of Objects/longobject.o: 'No space left on device'
/tmp/ccbaAM5X.s: Fatal error: Objects/longobject.o: No such file or directory
make[2]: *** [Makefile:3382: Objects/longobject.o] Error 1
/tmp/ccbgelZy.s: Assembler messages:
/tmp/ccbgelZy.s: Fatal error: can't write 55 bytes to section .text of Modules/_ctypes/_ctypes_test.o: 'No space left on device'
/tmp/ccbgelZy.s: Fatal error: Modules/_ctypes/_ctypes_test.o: No such file or directory
make[2]: *** [Makefile:3925: Modules/_ctypes/_ctypes_test.o] Error 1
/tmp/ccg7dOW4.s: Assembler messages:
/tmp/ccg7dOW4.s: Fatal error: can't write 30 bytes to section .text of Parser/parser.o: 'No space left on device'
/tmp/ccg7dOW4.s: Fatal error: Parser/parser.o: No such file or directory
make[2]: *** [Makefile:3382: Parser/parser.o] Error 1
make[1]: *** [Makefile:997: profile-gen-stamp] Error 2
make: *** [Makefile:1009: profile-run-stamp] Error 2 |
Sorry, something went wrong.
| Back | FazBrowse Home | New Git URL |
configure appends -mios-version-min to CFLAGS/LDFLAGS for every iOS build. That is the device flag (an alias for -miphoneos-version-min), so against the simulator SDK the linker rejects everything it resolves there:
_host_device is already derived from the host triple at configure.ac:794, so this selects the flag from it: -mios-simulator-version-min for the simulator, -mios-version-min unchanged for the device.
The wrappers in Platforms/Apple/iOS/Resources/bin hide this, because they pass --target=arm64-apple-ios-simulator and that pins the platform regardless of the later flag. Driving clang directly with -isysroot, as a cross-compiling build system typically does, hits it.
It is a quiet failure rather than a loud one. On unpatched main, a simulator configure still exits 0, but config.log holds 17 failed conftest links and features come out misdetected:
With a library on LDFLAGS before the first compiler check it fails outright with configure: error: C compiler cannot create executables.
Verified on macOS/arm64: the simulator build emits -mios-simulator-version-min=12.0 and detects all four features; the device build still emits -mios-version-min=12.0 and is otherwise unchanged.