Buildbot-status
Threads by month
- ----- 2024 -----
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2023 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2022 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2021 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2020 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2019 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2018 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2017 -----
- December
- November
- October
- September
- August
- July
- June
- May
May 2021
- 3 participants
- 250 discussions
For one of our casino websites we're trying the BeautifulSoup module which
can handle HTML and XML. It should provide a simple method for searching,
navigating and modifying the parse tree. However? Can we store and push
this right away?
The example below prints all links on a webpage:
from BeautifulSoup import BeautifulSoup
import urllib2
import re
html_page = urllib2.urlopen("https://www.online-casino-spielautomaten.de")
soup = BeautifulSoup(html_page)
for link in soup.findAll('a', attrs={'href': re.compile("^http://")}):
print link.get('href')
It downloads the raw html code with the line:
html_page = urllib2.urlopen("https://www.online-casino-spielautomaten.de")
A BeautifulSoup object is created and we use this object to find all links:
soup = BeautifulSoup(html_page)
for link in soup.findAll('a', attrs={'href': re.compile("^http://")}):
print link.get('href')
2
1
The Buildbot has detected a new failure on builder AMD64 Arch Linux Asan 3.x while building python/cpython.
Full details are available at:
https://buildbot.python.org/all/#builders/582/builds/200
Buildbot URL: https://buildbot.python.org/all/
Worker for this Build: pablogsal-arch-x86_64
Build Reason: <unknown>
Blamelist: Andreas Jansson <andreas.s.t.jansson(a)gmail.com>, Anthony Sottile <asottile(a)umich.edu>, Ashwin Ramaswami <aramaswamis(a)gmail.com>, Ayush Parikh <ayushparikh332(a)gmail.com>, Barney Gale <barney.gale(a)gmail.com>, Batuhan Taskaya <isidentical(a)gmail.com>, Bruno <brunogeninatti(a)gmail.com>, Catherine Devlin <catherine.devlin(a)gmail.com>, Christian Heimes <christian(a)python.org>, Dong-hee Na <donghee.na(a)python.org>, E-Paine <63801254+E-Paine(a)users.noreply.github.com>, Eric Snow <ericsnowcurrently(a)gmail.com>, Erlend Egeberg Aasland <erlend.aasland(a)innova.no>, Filipe Laíns <lains(a)riseup.net>, Gabriele N. Tornetta <P403n1x87(a)users.noreply.github.com>, Gregory P. Smith <greg(a)krypto.org>, Hai Shi <shihai1992(a)gmail.com>, Hugo van Kemenade <hugovk(a)users.noreply.github.com>, Ian Norton <inorton(a)gmail.com>, Igor Bolshakov <ibolsch(a)gmail.com>, Inada Naoki <songofacandy(a)gmail.com>, Irit Katriel <iritkatriel(a)yahoo.com>, Jakub Kulík <Kulikjak(a)gmail.com>, Jason R. Coombs <jaraco(a)jaraco.com>, Jero
Bado <tokidokitalkyou(a)gmail.com>, Jules Lasne <jules.lasne(a)gmail.com>, Junnosuke Kuroda <Isa-rentacs(a)users.noreply.github.com>, Jürgen Gmach <juergen.gmach(a)googlemail.com>, Ken Jin <28750310+Fidget-Spinner(a)users.noreply.github.com>, Marcono1234 <Marcono1234(a)users.noreply.github.com>, Mariusz Felisiak <felisiak.mariusz(a)gmail.com>, Mark <mark(a)qtrac.eu>, Mark Shannon <mark(a)hotpy.org>, Martmists <mail(a)martmists.com>, Ned Deily <nad(a)python.org>, Numerlor <25886452+Numerlor(a)users.noreply.github.com>, Pablo Galindo <Pablogsal(a)gmail.com>, Pete Wicken <2273100+JamoBox(a)users.noreply.github.com>, Peter Law <PeterJCLaw(a)gmail.com>, Petr Viktorin <encukou(a)gmail.com>, Rafael Fontenelle <rffontenelle(a)users.noreply.github.com>, Raymond Hettinger <rhettinger(a)users.noreply.github.com>, Sean Grady <vedicmonk(a)gmail.com>, Sergey B Kirpichev <2155800+skirpichev(a)users.noreply.github.com>, Sergey B Kirpichev <skirpichev(a)gmail.com>, Serhii Hidenko <shidenko97(a)gmail.com>, Serhiy Storchaka <storchaka(a)gmail.co
m>, Tal Einat <532281+taleinat(a)users.noreply.github.com>, Terry Jan Reedy <tjreedy(a)udel.edu>, Tushar Sadhwani <tushar.sadhwani000(a)gmail.com>, Victor Stinner <vstinner(a)python.org>, Yonatan Goldschmidt <yon.goldschmidt(a)gmail.com>, Zack Kneupper <zachary.kneupper(a)gmail.com>, Zackery Spytz <zspytz(a)gmail.com>, flizzywine <1041958497(a)qq.com>, naglis <naglis(a)users.noreply.github.com>, native-api <vano(a)mail.mipt.ru>, uniocto <serit142sa33go(a)gmail.com>
BUILD FAILED: failed test (failure) clean (failure)
Summary of the results of the build (if available):
===================================================
== Tests result: FAILURE then FAILURE ==
407 tests OK.
10 slowest tests:
- test_peg_generator: 4 min 26 sec
- test_concurrent_futures: 2 min 50 sec
- test_unparse: 1 min 56 sec
- test_subprocess: 1 min 51 sec
- test_tokenize: 1 min 33 sec
- test_multiprocessing_spawn: 1 min 31 sec
- test_lib2to3: 1 min 18 sec
- test_multiprocessing_forkserver: 1 min 8 sec
- test_asyncio: 1 min 7 sec
- test_multiprocessing_fork: 1 min
1 test failed:
test_threading
13 tests skipped:
test_devpoll test_ioctl test_kqueue test_msilib test_ossaudiodev
test_startfile test_tix test_tk test_ttk_guionly test_winconsoleio
test_winreg test_winsound test_zipfile64
1 re-run test:
test_threading
Total duration: 39 min 20 sec
Captured traceback
==================
Traceback (most recent call last):
File "/buildbot/buildarea/3.x.pablogsal-arch-x86_64.asan/build/Lib/test/test_threading.py", line 579, in test_is_alive_after_fork
support.wait_process(pid, exitcode=10)
File "/buildbot/buildarea/3.x.pablogsal-arch-x86_64.asan/build/Lib/test/support/__init__.py", line 1945, in wait_process
raise AssertionError(f"process {pid} is still running "
AssertionError: process 18876 is still running after 30.0 seconds
Traceback (most recent call last):
File "/buildbot/buildarea/3.x.pablogsal-arch-x86_64.asan/build/Lib/test/test_threading.py", line 579, in test_is_alive_after_fork
support.wait_process(pid, exitcode=10)
File "/buildbot/buildarea/3.x.pablogsal-arch-x86_64.asan/build/Lib/test/support/__init__.py", line 1945, in wait_process
raise AssertionError(f"process {pid} is still running "
AssertionError: process 13542 is still running after 30.0 seconds
Test report
===========
Failed tests:
- test_threading
Failed subtests:
- test_is_alive_after_fork - test.test_threading.ThreadTests
Sincerely,
-The Buildbot
1
0
The Buildbot has detected a new failure on builder s390x RHEL7 LTO + PGO 3.x while building python/cpython.
Full details are available at:
https://buildbot.python.org/all/#builders/244/builds/273
Buildbot URL: https://buildbot.python.org/all/
Worker for this Build: edelsohn-rhel-z
Build Reason: <unknown>
Blamelist: Victor Stinner <vstinner(a)python.org>
BUILD FAILED: failed test (failure) uploading test-results.xml (failure)
Summary of the results of the build (if available):
===================================================
==
Captured traceback
==================
remote: Enumerating objects: 11, done.[K
remote: Counting objects: 9% (1/11)[K
remote: Counting objects: 18% (2/11)[K
remote: Counting objects: 27% (3/11)[K
remote: Counting objects: 36% (4/11)[K
remote: Counting objects: 45% (5/11)[K
remote: Counting objects: 54% (6/11)[K
remote: Counting objects: 63% (7/11)[K
remote: Counting objects: 72% (8/11)[K
remote: Counting objects: 81% (9/11)[K
remote: Counting objects: 90% (10/11)[K
remote: Counting objects: 100% (11/11)[K
remote: Counting objects: 100% (11/11), done.[K
remote: Compressing objects: 100% (1/1)[K
remote: Compressing objects: 100% (1/1), done.[K
remote: Total 6 (delta 5), reused 5 (delta 5), pack-reused 0[K
From https://github.com/python/cpython
* branch main -> FETCH_HEAD
Note: checking out '142e5c5445c019542246d93fe2f9e195d3131686'.
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 performing another checkout.
If you want to create a new branch to retain commits you create, you may
do so (now or later) by using -b with the checkout command again. Example:
git checkout -b new_branch_name
HEAD is now at 142e5c5... bpo-44263: Fix _decimal and _testcapi GC protocol (GH-26464)
Switched to and reset branch 'main'
./configure: line 10530: PKG_PROG_PKG_CONFIG: command not found
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]: [clean-retain-profile] Error 1 (ignored)
Python/ceval.c: In function ‘PyEval_EvalCodeEx’:
Python/ceval.c:5287:19: warning: ‘newargs’ may be used uninitialized in this function [-Wmaybe-uninitialized]
PyMem_Free(newargs);
^
/usr/bin/ld: skipping incompatible /usr/local/lib/libgcc_s.so when searching for -lgcc_s
/usr/bin/ld: skipping incompatible /usr/local/lib/libgcc_s.so when searching for -lgcc_s
/usr/bin/ld: skipping incompatible /usr/local/lib/libgcc_s.so when searching for -lgcc_s
/usr/bin/ld: skipping incompatible /usr/local/lib/libgcc_s.so when searching for -lgcc_s
/usr/bin/ld: skipping incompatible /usr/local/lib/libgcc_s.so when searching for -lgcc_s
/usr/bin/ld: skipping incompatible /usr/local/lib/libgcc_s.so when searching for -lgcc_s
/usr/bin/ld: skipping incompatible /usr/local/lib/libgcc_s.so when searching for -lgcc_s
/usr/bin/ld: skipping incompatible /usr/local/lib/libgcc_s.so when searching for -lgcc_s
/usr/bin/ld: skipping incompatible /usr/local/lib/libgcc_s.so when searching for -lgcc_s
/usr/bin/ld: skipping incompatible /usr/local/lib/libgcc_s.so when searching for -lgcc_s
/usr/bin/ld: skipping incompatible /usr/local/lib/libgcc_s.so when searching for -lgcc_s
/usr/bin/ld: skipping incompatible /usr/local/lib/libgcc_s.so when searching for -lgcc_s
/usr/bin/ld: skipping incompatible /usr/local/lib/libgcc_s.so when searching for -lgcc_s
/usr/bin/ld: skipping incompatible /usr/local/lib/libgcc_s.so when searching for -lgcc_s
/usr/bin/ld: skipping incompatible /usr/local/lib/libgcc_s.so when searching for -lgcc_s
/usr/bin/ld: skipping incompatible /usr/local/lib/libgcc_s.so when searching for -lgcc_s
/usr/bin/ld: skipping incompatible /usr/local/lib/libgcc_s.so when searching for -lgcc_s
/usr/bin/ld: skipping incompatible /usr/local/lib/libgcc_s.so when searching for -lgcc_s
/usr/bin/ld: skipping incompatible /usr/local/lib/libgcc_s.so when searching for -lgcc_s
/usr/bin/ld: skipping incompatible /usr/local/lib/libgcc_s.so when searching for -lgcc_s
/usr/bin/ld: skipping incompatible /usr/local/lib/libgcc_s.so when searching for -lgcc_s
/usr/bin/ld: skipping incompatible /usr/local/lib/libgcc_s.so when searching for -lgcc_s
/usr/bin/ld: skipping incompatible /usr/local/lib/libgcc_s.so when searching for -lgcc_s
/usr/bin/ld: skipping incompatible /usr/local/lib/libgcc_s.so when searching for -lgcc_s
/usr/bin/ld: skipping incompatible /usr/local/lib/libgcc_s.so when searching for -lgcc_s
/usr/bin/ld: skipping incompatible /usr/local/lib/libgcc_s.so when searching for -lgcc_s
/usr/bin/ld: skipping incompatible /usr/local/lib/libgcc_s.so when searching for -lgcc_s
/usr/bin/ld: skipping incompatible /usr/local/lib/libgcc_s.so when searching for -lgcc_s
/usr/bin/ld: skipping incompatible /usr/local/lib/libgcc_s.so when searching for -lgcc_s
/usr/bin/ld: skipping incompatible /usr/local/lib/libgcc_s.so when searching for -lgcc_s
/usr/bin/ld: skipping incompatible /usr/local/lib/libgcc_s.so when searching for -lgcc_s
/usr/bin/ld: skipping incompatible /usr/local/lib/libgcc_s.so when searching for -lgcc_s
/usr/bin/ld: skipping incompatible /usr/local/lib/libgcc_s.so when searching for -lgcc_s
/usr/bin/ld: skipping incompatible /usr/local/lib/libgcc_s.so when searching for -lgcc_s
/usr/bin/ld: skipping incompatible /usr/local/lib/libgcc_s.so when searching for -lgcc_s
/usr/bin/ld: skipping incompatible /usr/local/lib/libgcc_s.so when searching for -lgcc_s
/usr/bin/ld: skipping incompatible /usr/local/lib/libgcc_s.so when searching for -lgcc_s
/usr/bin/ld: skipping incompatible /usr/local/lib/libgcc_s.so when searching for -lgcc_s
/usr/bin/ld: skipping incompatible /usr/local/lib/libgcc_s.so when searching for -lgcc_s
/usr/bin/ld: skipping incompatible /usr/local/lib/libgcc_s.so when searching for -lgcc_s
/usr/bin/ld: skipping incompatible /usr/local/lib/libgcc_s.so when searching for -lgcc_s
/usr/bin/ld: skipping incompatible /usr/local/lib/libgcc_s.so when searching for -lgcc_s
/usr/bin/ld: skipping incompatible /usr/local/lib/libgcc_s.so when searching for -lgcc_s
/usr/bin/ld: skipping incompatible /usr/local/lib/libgcc_s.so when searching for -lgcc_s
/usr/bin/ld: skipping incompatible /usr/local/lib/libgcc_s.so when searching for -lgcc_s
/usr/bin/ld: skipping incompatible /usr/local/lib/libgcc_s.so when searching for -lgcc_s
/usr/bin/ld: skipping incompatible /usr/local/lib/libgcc_s.so when searching for -lgcc_s
/usr/bin/ld: skipping incompatible /usr/local/lib/libgcc_s.so when searching for -lgcc_s
/usr/bin/ld: skipping incompatible /usr/local/lib/libgcc_s.so when searching for -lgcc_s
/usr/bin/ld: skipping incompatible /usr/local/lib/libgcc_s.so when searching for -lgcc_s
/usr/bin/ld: skipping incompatible /usr/local/lib/libgcc_s.so when searching for -lgcc_s
/usr/bin/ld: skipping incompatible /usr/local/lib/libgcc_s.so when searching for -lgcc_s
/usr/bin/ld: skipping incompatible /usr/local/lib/libgcc_s.so when searching for -lgcc_s
/usr/bin/ld: skipping incompatible /usr/local/lib/libgcc_s.so when searching for -lgcc_s
/usr/bin/ld: skipping incompatible /usr/local/lib/libgcc_s.so when searching for -lgcc_s
/usr/bin/ld: skipping incompatible /usr/local/lib/libgcc_s.so when searching for -lgcc_s
/usr/bin/ld: skipping incompatible /usr/local/lib/libgcc_s.so when searching for -lgcc_s
/usr/bin/ld: skipping incompatible /usr/local/lib/libgcc_s.so when searching for -lgcc_s
/usr/bin/ld: skipping incompatible /usr/local/lib/libgcc_s.so when searching for -lgcc_s
/usr/bin/ld: skipping incompatible /usr/local/lib/libgcc_s.so when searching for -lgcc_s
/usr/bin/ld: skipping incompatible /usr/local/lib/libgcc_s.so when searching for -lgcc_s
/usr/bin/ld: skipping incompatible /usr/local/lib/libgcc_s.so when searching for -lgcc_s
/usr/bin/ld: skipping incompatible /usr/local/lib/libgcc_s.so when searching for -lgcc_s
/usr/bin/ld: skipping incompatible /usr/local/lib/libgcc_s.so when searching for -lgcc_s
/usr/bin/ld: skipping incompatible /usr/local/lib/libgcc_s.so when searching for -lgcc_s
/usr/bin/ld: skipping incompatible /usr/local/lib/libgcc_s.so when searching for -lgcc_s
/usr/bin/ld: skipping incompatible /usr/local/lib/libgcc_s.so when searching for -lgcc_s
/usr/bin/ld: skipping incompatible /usr/local/lib/libgcc_s.so when searching for -lgcc_s
/usr/bin/ld: skipping incompatible /usr/local/lib/libgcc_s.so when searching for -lgcc_s
/usr/bin/ld: skipping incompatible /usr/local/lib/libgcc_s.so when searching for -lgcc_s
/usr/bin/ld: skipping incompatible /usr/local/lib/libgcc_s.so when searching for -lgcc_s
/usr/bin/ld: skipping incompatible /usr/local/lib/libgcc_s.so when searching for -lgcc_s
In file included from /home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_ssl.c:390:0:
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_ssl/debughelpers.c: In function ‘_PySSLContext_set_keylog_filename’:
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_ssl/debughelpers.c:180:5: error: implicit declaration of function ‘SSL_CTX_set_keylog_callback’ [-Werror=implicit-function-declaration]
SSL_CTX_set_keylog_callback(self->ctx, NULL);
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_ssl.c: In function ‘_ssl_configure_hostname’:
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_ssl.c:765:13: error: implicit declaration of function ‘ASN1_STRING_get0_data’ [-Werror=implicit-function-declaration]
if (!X509_VERIFY_PARAM_set1_ip(param, ASN1_STRING_get0_data(ip),
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_ssl.c:766:44: warning: passing argument 2 of ‘X509_VERIFY_PARAM_set1_ip’ makes pointer from integer without a cast [enabled by default]
ASN1_STRING_length(ip))) {
^
In file included from /usr/include/openssl/x509.h:581:0,
from /home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_ssl.h:6,
from /home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_ssl.c:31:
/usr/include/openssl/x509_vfy.h:604:5: note: expected ‘const unsigned char *’ but argument is of type ‘int’
int X509_VERIFY_PARAM_set1_ip(X509_VERIFY_PARAM *param,
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_ssl.c: In function ‘newPySSLSocket’:
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_ssl.c:831:9: error: implicit declaration of function ‘BIO_up_ref’ [-Werror=implicit-function-declaration]
BIO_up_ref(inbio->bio);
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_ssl.c: In function ‘_create_tuple_for_X509_NAME’:
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_ssl.c:1086:13: error: implicit declaration of function ‘X509_NAME_ENTRY_set’ [-Werror=implicit-function-declaration]
if (rdn_level != X509_NAME_ENTRY_set(entry)) {
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_ssl.c: In function ‘_get_peer_alt_names’:
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_ssl.c:1251:49: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast]
v = PyUnicode_FromStringAndSize((char *)ASN1_STRING_get0_data(as),
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_ssl.c: In function ‘_decode_certificate’:
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_ssl.c:1611:5: error: implicit declaration of function ‘X509_get0_notBefore’ [-Werror=implicit-function-declaration]
notBefore = X509_get0_notBefore(certificate);
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_ssl.c:1611:15: warning: assignment makes pointer from integer without a cast [enabled by default]
notBefore = X509_get0_notBefore(certificate);
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_ssl.c:1628:5: error: implicit declaration of function ‘X509_get0_notAfter’ [-Werror=implicit-function-declaration]
notAfter = X509_get0_notAfter(certificate);
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_ssl.c:1628:14: warning: assignment makes pointer from integer without a cast [enabled by default]
notAfter = X509_get0_notAfter(certificate);
^
In file included from /home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_ssl.c:1724:0:
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_ssl/cert.c: In function ‘newCertificate’:
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_ssl/cert.c:30:9: error: implicit declaration of function ‘X509_up_ref’ [-Werror=implicit-function-declaration]
X509_up_ref(cert);
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_ssl.c: In function ‘_ssl__SSLSocket_get_verified_chain_impl’:
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_ssl.c:1828:29: warning: initialization makes pointer from integer without a cast [enabled by default]
STACK_OF(X509) *chain = SSL_get0_verified_chain(self->ssl);
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_ssl.c: In function ‘cipher_to_dict’:
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_ssl.c:1946:5: error: implicit declaration of function ‘SSL_CIPHER_is_aead’ [-Werror=implicit-function-declaration]
aead = SSL_CIPHER_is_aead(cipher);
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_ssl.c:1947:5: error: implicit declaration of function ‘SSL_CIPHER_get_cipher_nid’ [-Werror=implicit-function-declaration]
nid = SSL_CIPHER_get_cipher_nid(cipher);
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_ssl.c:1949:5: error: implicit declaration of function ‘SSL_CIPHER_get_digest_nid’ [-Werror=implicit-function-declaration]
nid = SSL_CIPHER_get_digest_nid(cipher);
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_ssl.c:1951:5: error: implicit declaration of function ‘SSL_CIPHER_get_kx_nid’ [-Werror=implicit-function-declaration]
nid = SSL_CIPHER_get_kx_nid(cipher);
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_ssl.c:1953:5: error: implicit declaration of function ‘SSL_CIPHER_get_auth_nid’ [-Werror=implicit-function-declaration]
nid = SSL_CIPHER_get_auth_nid(cipher);
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_ssl.c: In function ‘_ssl__SSLSocket_compression_impl’:
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_ssl.c:2078:5: error: implicit declaration of function ‘COMP_get_type’ [-Werror=implicit-function-declaration]
if (comp_method == NULL || COMP_get_type(comp_method) == NID_undef)
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_ssl.c: In function ‘_ssl__SSLSocket_write_impl’:
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_ssl.c:2335:9: error: implicit declaration of function ‘SSL_write_ex’ [-Werror=implicit-function-declaration]
retval = SSL_write_ex(self->ssl, b->buf, (int)b->len, &count);
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_ssl.c: In function ‘_ssl__SSLSocket_read_impl’:
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_ssl.c:2487:9: error: implicit declaration of function ‘SSL_read_ex’ [-Werror=implicit-function-declaration]
retval = SSL_read_ex(self->ssl, mem, len, &count);
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_ssl.c: In function ‘_ssl__SSLContext_impl’:
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_ssl.c:3013:9: error: implicit declaration of function ‘TLS_method’ [-Werror=implicit-function-declaration]
method = TLS_method();
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_ssl.c:3013:16: warning: assignment makes pointer from integer without a cast [enabled by default]
method = TLS_method();
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_ssl.c:3016:9: error: implicit declaration of function ‘TLS_client_method’ [-Werror=implicit-function-declaration]
method = TLS_client_method();
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_ssl.c:3016:16: warning: assignment makes pointer from integer without a cast [enabled by default]
method = TLS_client_method();
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_ssl.c:3019:9: error: implicit declaration of function ‘TLS_server_method’ [-Werror=implicit-function-declaration]
method = TLS_server_method();
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_ssl.c:3019:16: warning: assignment makes pointer from integer without a cast [enabled by default]
method = TLS_server_method();
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_ssl.c:3122:9: error: implicit declaration of function ‘SSL_CTX_set_min_proto_version’ [-Werror=implicit-function-declaration]
result = SSL_CTX_set_min_proto_version(ctx, PY_SSL_MIN_PROTOCOL);
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_ssl.c: In function ‘set_min_max_proto_version’:
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_ssl.c:3482:9: error: implicit declaration of function ‘SSL_CTX_set_max_proto_version’ [-Werror=implicit-function-declaration]
result = SSL_CTX_set_max_proto_version(self->ctx, v);
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_ssl.c: In function ‘get_minimum_version’:
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_ssl.c:3495:37: error: ‘SSL_CTRL_GET_MIN_PROTO_VERSION’ undeclared (first use in this function)
int v = SSL_CTX_ctrl(self->ctx, SSL_CTRL_GET_MIN_PROTO_VERSION, 0, NULL);
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_ssl.c:3495:37: note: each undeclared identifier is reported only once for each function it appears in
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_ssl.c: In function ‘get_maximum_version’:
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_ssl.c:3511:37: error: ‘SSL_CTRL_GET_MAX_PROTO_VERSION’ undeclared (first use in this function)
int v = SSL_CTX_ctrl(self->ctx, SSL_CTRL_GET_MAX_PROTO_VERSION, 0, NULL);
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_ssl.c: In function ‘get_security_level’:
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_ssl.c:3560:5: error: implicit declaration of function ‘SSL_CTX_get_security_level’ [-Werror=implicit-function-declaration]
return PyLong_FromLong(SSL_CTX_get_security_level(self->ctx));
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_ssl.c: In function ‘_ssl__SSLContext_load_cert_chain_impl’:
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_ssl.c:3801:5: error: implicit declaration of function ‘SSL_CTX_get_default_passwd_cb’ [-Werror=implicit-function-declaration]
pem_password_cb *orig_passwd_cb = SSL_CTX_get_default_passwd_cb(self->ctx);
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_ssl.c:3801:39: warning: initialization makes pointer from integer without a cast [enabled by default]
pem_password_cb *orig_passwd_cb = SSL_CTX_get_default_passwd_cb(self->ctx);
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_ssl.c:3802:5: error: implicit declaration of function ‘SSL_CTX_get_default_passwd_cb_userdata’ [-Werror=implicit-function-declaration]
void *orig_passwd_userdata = SSL_CTX_get_default_passwd_cb_userdata(self->ctx);
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_ssl.c:3802:34: warning: initialization makes pointer from integer without a cast [enabled by default]
void *orig_passwd_userdata = SSL_CTX_get_default_passwd_cb_userdata(self->ctx);
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_ssl.c: In function ‘_add_ca_certs’:
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_ssl.c:3935:37: warning: passing argument 3 of ‘PEM_read_bio_X509’ makes pointer from integer without a cast [enabled by default]
);
^
In file included from /home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_ssl.c:59:0:
/usr/include/openssl/pem.h:451:1: note: expected ‘int (*)(char *, int, int, void *)’ but argument is of type ‘int’
DECLARE_PEM_rw(X509, X509)
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_ssl.c:3935:37: warning: passing argument 4 of ‘PEM_read_bio_X509’ makes pointer from integer without a cast [enabled by default]
);
^
In file included from /home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_ssl.c:59:0:
/usr/include/openssl/pem.h:451:1: note: expected ‘void *’ but argument is of type ‘int’
DECLARE_PEM_rw(X509, X509)
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_ssl.c: In function ‘_ssl__SSLContext_cert_store_stats_impl’:
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_ssl.c:4495:5: error: implicit declaration of function ‘X509_STORE_get0_objects’ [-Werror=implicit-function-declaration]
objs = X509_STORE_get0_objects(store);
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_ssl.c:4495:10: warning: assignment makes pointer from integer without a cast [enabled by default]
objs = X509_STORE_get0_objects(store);
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_ssl.c:4498:9: error: implicit declaration of function ‘X509_OBJECT_get_type’ [-Werror=implicit-function-declaration]
switch (X509_OBJECT_get_type(obj)) {
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_ssl.c:4501:17: error: implicit declaration of function ‘X509_OBJECT_get0_X509’ [-Werror=implicit-function-declaration]
if (X509_check_ca(X509_OBJECT_get0_X509(obj))) {
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_ssl.c:4501:17: warning: passing argument 1 of ‘X509_check_ca’ makes pointer from integer without a cast [enabled by default]
In file included from /home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_ssl.c:58:0:
/usr/include/openssl/x509v3.h:697:5: note: expected ‘struct X509 *’ but argument is of type ‘int’
int X509_check_ca(X509 *x);
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_ssl.c: In function ‘_ssl__SSLContext_get_ca_certs_impl’:
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_ssl.c:4546:10: warning: assignment makes pointer from integer without a cast [enabled by default]
objs = X509_STORE_get0_objects(store);
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_ssl.c:4557:14: warning: assignment makes pointer from integer without a cast [enabled by default]
cert = X509_OBJECT_get0_X509(obj);
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_ssl.c: In function ‘PySSLSession_get_ticket_lifetime_hint’:
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_ssl.c:4984:5: error: implicit declaration of function ‘SSL_SESSION_get_ticket_lifetime_hint’ [-Werror=implicit-function-declaration]
unsigned long hint = SSL_SESSION_get_ticket_lifetime_hint(self->session);
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_ssl.c: In function ‘PySSLSession_get_has_ticket’:
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_ssl.c:5006:5: error: implicit declaration of function ‘SSL_SESSION_has_ticket’ [-Werror=implicit-function-declaration]
if (SSL_SESSION_has_ticket(self->session)) {
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_ssl.c: In function ‘sslmodule_init_versioninfo’:
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_ssl.c:6059:5: error: implicit declaration of function ‘OpenSSL_version_num’ [-Werror=implicit-function-declaration]
libver = OpenSSL_version_num();
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_ssl.c:6069:5: error: implicit declaration of function ‘OpenSSL_version’ [-Werror=implicit-function-declaration]
r = PyUnicode_FromString(OpenSSL_version(OPENSSL_VERSION));
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_ssl.c:6069:46: error: ‘OPENSSL_VERSION’ undeclared (first use in this function)
r = PyUnicode_FromString(OpenSSL_version(OPENSSL_VERSION));
^
cc1: some warnings being treated as errors
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_hashopenssl.c: In function ‘py_digest_name’:
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_hashopenssl.c:158:10: error: ‘NID_sha3_224’ undeclared (first use in this function)
case NID_sha3_224:
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_hashopenssl.c:158:10: note: each undeclared identifier is reported only once for each function it appears in
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_hashopenssl.c:161:10: error: ‘NID_sha3_256’ undeclared (first use in this function)
case NID_sha3_256:
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_hashopenssl.c:164:10: error: ‘NID_sha3_384’ undeclared (first use in this function)
case NID_sha3_384:
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_hashopenssl.c:167:10: error: ‘NID_sha3_512’ undeclared (first use in this function)
case NID_sha3_512:
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_hashopenssl.c:172:10: error: ‘NID_shake128’ undeclared (first use in this function)
case NID_shake128:
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_hashopenssl.c:175:10: error: ‘NID_shake256’ undeclared (first use in this function)
case NID_shake256:
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_hashopenssl.c:180:10: error: ‘NID_blake2s256’ undeclared (first use in this function)
case NID_blake2s256:
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_hashopenssl.c:183:10: error: ‘NID_blake2b512’ undeclared (first use in this function)
case NID_blake2b512:
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_hashopenssl.c: In function ‘py_digest_by_name’:
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_hashopenssl.c:222:13: error: implicit declaration of function ‘EVP_sha3_224’ [-Werror=implicit-function-declaration]
digest = EVP_sha3_224();
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_hashopenssl.c:222:20: warning: assignment makes pointer from integer without a cast [enabled by default]
digest = EVP_sha3_224();
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_hashopenssl.c:225:13: error: implicit declaration of function ‘EVP_sha3_256’ [-Werror=implicit-function-declaration]
digest = EVP_sha3_256();
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_hashopenssl.c:225:20: warning: assignment makes pointer from integer without a cast [enabled by default]
digest = EVP_sha3_256();
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_hashopenssl.c:228:13: error: implicit declaration of function ‘EVP_sha3_384’ [-Werror=implicit-function-declaration]
digest = EVP_sha3_384();
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_hashopenssl.c:228:20: warning: assignment makes pointer from integer without a cast [enabled by default]
digest = EVP_sha3_384();
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_hashopenssl.c:231:13: error: implicit declaration of function ‘EVP_sha3_512’ [-Werror=implicit-function-declaration]
digest = EVP_sha3_512();
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_hashopenssl.c:231:20: warning: assignment makes pointer from integer without a cast [enabled by default]
digest = EVP_sha3_512();
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_hashopenssl.c:236:13: error: implicit declaration of function ‘EVP_shake128’ [-Werror=implicit-function-declaration]
digest = EVP_shake128();
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_hashopenssl.c:236:20: warning: assignment makes pointer from integer without a cast [enabled by default]
digest = EVP_shake128();
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_hashopenssl.c:239:13: error: implicit declaration of function ‘EVP_shake256’ [-Werror=implicit-function-declaration]
digest = EVP_shake256();
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_hashopenssl.c:239:20: warning: assignment makes pointer from integer without a cast [enabled by default]
digest = EVP_shake256();
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_hashopenssl.c:244:13: error: implicit declaration of function ‘EVP_blake2s256’ [-Werror=implicit-function-declaration]
digest = EVP_blake2s256();
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_hashopenssl.c:244:20: warning: assignment makes pointer from integer without a cast [enabled by default]
digest = EVP_blake2s256();
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_hashopenssl.c:247:13: error: implicit declaration of function ‘EVP_blake2b512’ [-Werror=implicit-function-declaration]
digest = EVP_blake2b512();
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_hashopenssl.c:247:20: warning: assignment makes pointer from integer without a cast [enabled by default]
digest = EVP_blake2b512();
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_hashopenssl.c: In function ‘newEVPobject’:
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_hashopenssl.c:312:5: error: implicit declaration of function ‘EVP_MD_CTX_new’ [-Werror=implicit-function-declaration]
retval->ctx = EVP_MD_CTX_new();
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_hashopenssl.c:312:17: warning: assignment makes pointer from integer without a cast [enabled by default]
retval->ctx = EVP_MD_CTX_new();
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_hashopenssl.c: In function ‘EVP_dealloc’:
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_hashopenssl.c:350:5: error: implicit declaration of function ‘EVP_MD_CTX_free’ [-Werror=implicit-function-declaration]
EVP_MD_CTX_free(self->ctx);
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_hashopenssl.c: In function ‘EVP_digest_impl’:
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_hashopenssl.c:404:14: warning: assignment makes pointer from integer without a cast [enabled by default]
temp_ctx = EVP_MD_CTX_new();
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_hashopenssl.c: In function ‘EVP_hexdigest_impl’:
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_hashopenssl.c:438:14: warning: assignment makes pointer from integer without a cast [enabled by default]
temp_ctx = EVP_MD_CTX_new();
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_hashopenssl.c: In function ‘EVPXOF_digest_impl’:
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_hashopenssl.c:616:14: warning: assignment makes pointer from integer without a cast [enabled by default]
temp_ctx = EVP_MD_CTX_new();
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_hashopenssl.c:628:5: error: implicit declaration of function ‘EVP_DigestFinalXOF’ [-Werror=implicit-function-declaration]
if (!EVP_DigestFinalXOF(temp_ctx,
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_hashopenssl.c: In function ‘EVPXOF_hexdigest_impl’:
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_hashopenssl.c:663:14: warning: assignment makes pointer from integer without a cast [enabled by default]
temp_ctx = EVP_MD_CTX_new();
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_hashopenssl.c: In function ‘EVPnew’:
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_hashopenssl.c:761:33: error: ‘EVP_MD_FLAG_XOF’ undeclared (first use in this function)
if ((EVP_MD_flags(digest) & EVP_MD_FLAG_XOF) == EVP_MD_FLAG_XOF) {
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_hashopenssl.c: In function ‘_hashlib_openssl_sha3_224_impl’:
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_hashopenssl.c:1009:5: warning: passing argument 3 of ‘EVP_fast_new’ makes pointer from integer without a cast [enabled by default]
return EVP_fast_new(module, data_obj, EVP_sha3_224(), usedforsecurity);
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_hashopenssl.c:852:1: note: expected ‘const struct EVP_MD *’ but argument is of type ‘int’
EVP_fast_new(PyObject *module, PyObject *data_obj, const EVP_MD *digest,
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_hashopenssl.c: In function ‘_hashlib_openssl_sha3_256_impl’:
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_hashopenssl.c:1028:5: warning: passing argument 3 of ‘EVP_fast_new’ makes pointer from integer without a cast [enabled by default]
return EVP_fast_new(module, data_obj, EVP_sha3_256(), usedforsecurity);
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_hashopenssl.c:852:1: note: expected ‘const struct EVP_MD *’ but argument is of type ‘int’
EVP_fast_new(PyObject *module, PyObject *data_obj, const EVP_MD *digest,
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_hashopenssl.c: In function ‘_hashlib_openssl_sha3_384_impl’:
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_hashopenssl.c:1047:5: warning: passing argument 3 of ‘EVP_fast_new’ makes pointer from integer without a cast [enabled by default]
return EVP_fast_new(module, data_obj, EVP_sha3_384(), usedforsecurity);
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_hashopenssl.c:852:1: note: expected ‘const struct EVP_MD *’ but argument is of type ‘int’
EVP_fast_new(PyObject *module, PyObject *data_obj, const EVP_MD *digest,
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_hashopenssl.c: In function ‘_hashlib_openssl_sha3_512_impl’:
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_hashopenssl.c:1066:5: warning: passing argument 3 of ‘EVP_fast_new’ makes pointer from integer without a cast [enabled by default]
return EVP_fast_new(module, data_obj, EVP_sha3_512(), usedforsecurity);
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_hashopenssl.c:852:1: note: expected ‘const struct EVP_MD *’ but argument is of type ‘int’
EVP_fast_new(PyObject *module, PyObject *data_obj, const EVP_MD *digest,
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_hashopenssl.c: In function ‘_hashlib_openssl_shake_128_impl’:
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_hashopenssl.c:1087:5: warning: passing argument 3 of ‘EVP_fast_new’ makes pointer from integer without a cast [enabled by default]
return EVP_fast_new(module, data_obj, EVP_shake128(), usedforsecurity);
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_hashopenssl.c:852:1: note: expected ‘const struct EVP_MD *’ but argument is of type ‘int’
EVP_fast_new(PyObject *module, PyObject *data_obj, const EVP_MD *digest,
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_hashopenssl.c: In function ‘_hashlib_openssl_shake_256_impl’:
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_hashopenssl.c:1106:5: warning: passing argument 3 of ‘EVP_fast_new’ makes pointer from integer without a cast [enabled by default]
return EVP_fast_new(module, data_obj, EVP_shake256(), usedforsecurity);
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_hashopenssl.c:852:1: note: expected ‘const struct EVP_MD *’ but argument is of type ‘int’
EVP_fast_new(PyObject *module, PyObject *data_obj, const EVP_MD *digest,
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_hashopenssl.c: In function ‘_hashlib_scrypt_impl’:
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_hashopenssl.c:1298:5: error: implicit declaration of function ‘EVP_PBE_scrypt’ [-Werror=implicit-function-declaration]
retval = EVP_PBE_scrypt(NULL, 0, NULL, 0, n, r, p, maxmem, NULL, 0);
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_hashopenssl.c: In function ‘_hashlib_hmac_new_impl’:
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_hashopenssl.c:1428:5: error: implicit declaration of function ‘HMAC_CTX_new’ [-Werror=implicit-function-declaration]
ctx = HMAC_CTX_new();
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_hashopenssl.c:1428:9: warning: assignment makes pointer from integer without a cast [enabled by default]
ctx = HMAC_CTX_new();
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_hashopenssl.c:1461:5: error: implicit declaration of function ‘HMAC_CTX_free’ [-Werror=implicit-function-declaration]
if (ctx) HMAC_CTX_free(ctx);
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_hashopenssl.c: In function ‘_hmac_digest_size’:
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_hashopenssl.c:1480:5: error: implicit declaration of function ‘HMAC_CTX_get_md’ [-Werror=implicit-function-declaration]
unsigned int digest_size = EVP_MD_size(HMAC_CTX_get_md(self->ctx));
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_hashopenssl.c:1480:5: warning: passing argument 1 of ‘EVP_MD_size’ makes pointer from integer without a cast [enabled by default]
In file included from /home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_hashopenssl.c:28:0:
/usr/include/openssl/evp.h:523:5: note: expected ‘const struct EVP_MD *’ but argument is of type ‘int’
int EVP_MD_size(const EVP_MD *md);
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_hashopenssl.c: In function ‘_hashlib_HMAC_copy_impl’:
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_hashopenssl.c:1529:21: warning: initialization makes pointer from integer without a cast [enabled by default]
HMAC_CTX *ctx = HMAC_CTX_new();
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_hashopenssl.c: In function ‘_hmac_repr’:
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_hashopenssl.c:1564:5: warning: passing argument 1 of ‘py_digest_name’ makes pointer from integer without a cast [enabled by default]
PyObject *digest_name = py_digest_name(HMAC_CTX_get_md(self->ctx));
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_hashopenssl.c:122:1: note: expected ‘const struct EVP_MD *’ but argument is of type ‘int’
py_digest_name(const EVP_MD *md)
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_hashopenssl.c: In function ‘_hmac_digest’:
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_hashopenssl.c:1595:26: warning: initialization makes pointer from integer without a cast [enabled by default]
HMAC_CTX *temp_ctx = HMAC_CTX_new();
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_hashopenssl.c: In function ‘_hashlib_hmac_get_block_size’:
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_hashopenssl.c:1672:24: warning: initialization makes pointer from integer without a cast [enabled by default]
const EVP_MD *md = HMAC_CTX_get_md(self->ctx);
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_hashopenssl.c: In function ‘_hashlib_hmac_get_name’:
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_hashopenssl.c:1682:5: warning: passing argument 1 of ‘py_digest_name’ makes pointer from integer without a cast [enabled by default]
PyObject *digest_name = py_digest_name(HMAC_CTX_get_md(self->ctx));
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_hashopenssl.c:122:1: note: expected ‘const struct EVP_MD *’ but argument is of type ‘int’
py_digest_name(const EVP_MD *md)
^
cc1: some warnings being treated as errors
/usr/bin/ld: skipping incompatible /usr/local/lib/libgcc_s.so when searching for -lgcc_s
/usr/bin/ld: skipping incompatible /usr/local/lib/libgcc_s.so when searching for -lgcc_s
/usr/bin/ld: skipping incompatible /usr/local/lib/libgcc_s.so when searching for -lgcc_s
/usr/bin/ld: skipping incompatible /usr/local/lib/libgcc_s.so when searching for -lgcc_s
/usr/bin/ld: skipping incompatible /usr/local/lib/libgcc_s.so when searching for -lgcc_s
/usr/bin/ld: skipping incompatible /usr/local/lib/libgcc_s.so when searching for -lgcc_s
/usr/bin/ld: skipping incompatible /usr/local/lib/libgcc_s.so when searching for -lgcc_s
/usr/bin/ld: skipping incompatible /usr/local/lib/libgcc_s.so when searching for -lgcc_s
/usr/bin/ld: skipping incompatible /usr/local/lib/libgcc_s.so when searching for -lgcc_s
/usr/bin/ld: skipping incompatible /usr/local/lib/libgcc_s.so when searching for -lgcc_s
In file included from /home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_sha3/sha3module.c:118:0:
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_sha3/kcp/KeccakP-1600-inplace32BI.c: In function ‘_PySHA3_KeccakP1600_ExtractAndAddLanes’:
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_sha3/kcp/KeccakP-1600-inplace32BI.c:421:9: warning: dereferencing type-punned pointer will break strict-aliasing rules [-Wstrict-aliasing]
((UINT32*)(output+lanePosition*8))[0] = ((UINT32*)(input+lanePosition*8))[0] ^ (*(const UINT32*)(laneAsBytes+0));
^
/usr/bin/ld: skipping incompatible /usr/local/lib/libgcc_s.so when searching for -lgcc_s
/usr/bin/ld: skipping incompatible /usr/local/lib/libgcc_s.so when searching for -lgcc_s
/usr/bin/ld: skipping incompatible /usr/local/lib/libgcc_s.so when searching for -lgcc_s
/usr/bin/ld: skipping incompatible /usr/local/lib/libgcc_s.so when searching for -lgcc_s
/usr/bin/ld: skipping incompatible /usr/local/lib/libgcc_s.so when searching for -lgcc_s
/usr/bin/ld: skipping incompatible /usr/local/lib/libgcc_s.so when searching for -lgcc_s
/usr/bin/ld: skipping incompatible /usr/local/lib/libgcc_s.so when searching for -lgcc_s
/usr/bin/ld: skipping incompatible /usr/local/lib/libgcc_s.so when searching for -lgcc_s
/usr/bin/ld: skipping incompatible /usr/local/lib/libgcc_s.so when searching for -lgcc_s
/usr/bin/ld: skipping incompatible /usr/local/lib/libgcc_s.so when searching for -lgcc_s
/usr/bin/ld: skipping incompatible /usr/local/lib/libgcc_s.so when searching for -lgcc_s
/usr/bin/ld: skipping incompatible /usr/local/lib/libgcc_s.so when searching for -lgcc_s
/usr/bin/ld: skipping incompatible /usr/local/lib/libgcc_s.so when searching for -lgcc_s
/usr/bin/ld: skipping incompatible /usr/local/lib/libgcc_s.so when searching for -lgcc_s
/usr/bin/ld: skipping incompatible /usr/local/lib/libgcc_s.so when searching for -lgcc_s
/usr/bin/ld: skipping incompatible /usr/local/lib/libgcc_s.so when searching for -lgcc_s
/usr/bin/ld: skipping incompatible /usr/local/lib/libgcc_s.so when searching for -lgcc_s
/usr/bin/ld: skipping incompatible /usr/local/lib/libgcc_s.so when searching for -lgcc_s
/usr/bin/ld: skipping incompatible /usr/local/lib/libgcc_s.so when searching for -lgcc_s
/usr/bin/ld: skipping incompatible /usr/local/lib/libgcc_s.so when searching for -lgcc_s
/usr/bin/ld: skipping incompatible /usr/local/lib/libgcc_s.so when searching for -lgcc_s
/usr/bin/ld: skipping incompatible /usr/local/lib/libgcc_s.so when searching for -lgcc_s
/usr/bin/ld: skipping incompatible /usr/local/lib/libgcc_s.so when searching for -lgcc_s
/usr/bin/ld: skipping incompatible /usr/local/lib/libgcc_s.so when searching for -lgcc_s
/usr/bin/ld: skipping incompatible /usr/local/lib/libgcc_s.so when searching for -lgcc_s
/usr/bin/ld: skipping incompatible /usr/local/lib/libgcc_s.so when searching for -lgcc_s
/usr/bin/ld: skipping incompatible /usr/local/lib/libgcc_s.so when searching for -lgcc_s
/usr/bin/ld: skipping incompatible /usr/local/lib/libgcc_s.so when searching for -lgcc_s
/usr/bin/ld: skipping incompatible /usr/local/lib/libgcc_s.so when searching for -lgcc_s
/usr/bin/ld: skipping incompatible /usr/local/lib/libgcc_s.so when searching for -lgcc_s
/usr/bin/ld: skipping incompatible /usr/local/lib/libgcc_s.so when searching for -lgcc_s
/usr/bin/ld: skipping incompatible /usr/local/lib/libgcc_s.so when searching for -lgcc_s
/usr/bin/ld: skipping incompatible /usr/local/lib/libgcc_s.so when searching for -lgcc_s
/usr/bin/ld: skipping incompatible /usr/local/lib/libgcc_s.so when searching for -lgcc_s
/usr/bin/ld: skipping incompatible /usr/local/lib/libgcc_s.so when searching for -lgcc_s
/usr/bin/ld: skipping incompatible /usr/local/lib/libgcc_s.so when searching for -lgcc_s
/usr/bin/ld: skipping incompatible /usr/local/lib/libgcc_s.so when searching for -lgcc_s
/usr/bin/ld: skipping incompatible /usr/local/lib/libgcc_s.so when searching for -lgcc_s
/usr/bin/ld: skipping incompatible /usr/local/lib/libgcc_s.so when searching for -lgcc_s
/usr/bin/ld: skipping incompatible /usr/local/lib/libgcc_s.so when searching for -lgcc_s
/usr/bin/ld: skipping incompatible /usr/local/lib/libgcc_s.so when searching for -lgcc_s
/usr/bin/ld: skipping incompatible /usr/local/lib/libgcc_s.so when searching for -lgcc_s
/usr/bin/ld: skipping incompatible /usr/local/lib/libgcc_s.so when searching for -lgcc_s
/usr/bin/ld: skipping incompatible /usr/local/lib/libgcc_s.so when searching for -lgcc_s
/usr/bin/ld: skipping incompatible /usr/local/lib/libgcc_s.so when searching for -lgcc_s
/usr/bin/ld: skipping incompatible /usr/local/lib/libgcc_s.so when searching for -lgcc_s
/usr/bin/ld: skipping incompatible /usr/local/lib/libgcc_s.so when searching for -lgcc_s
/usr/bin/ld: skipping incompatible /usr/local/lib/libgcc_s.so when searching for -lgcc_s
/usr/bin/ld: skipping incompatible /usr/local/lib/libgcc_s.so when searching for -lgcc_s
/usr/bin/ld: skipping incompatible /usr/local/lib/libgcc_s.so when searching for -lgcc_s
/usr/bin/ld: skipping incompatible /usr/local/lib/libgcc_s.so when searching for -lgcc_s
/usr/bin/ld: skipping incompatible /usr/local/lib/libgcc_s.so when searching for -lgcc_s
/usr/bin/ld: skipping incompatible /usr/local/lib/libgcc_s.so when searching for -lgcc_s
/usr/bin/ld: skipping incompatible /usr/local/lib/libgcc_s.so when searching for -lgcc_s
/usr/bin/ld: skipping incompatible /usr/local/lib/libgcc_s.so when searching for -lgcc_s
/usr/bin/ld: skipping incompatible /usr/local/lib/libgcc_s.so when searching for -lgcc_s
/usr/bin/ld: skipping incompatible /usr/local/lib/libgcc_s.so when searching for -lgcc_s
/usr/bin/ld: skipping incompatible /usr/local/lib/libgcc_s.so when searching for -lgcc_s
/usr/bin/ld: skipping incompatible /usr/local/lib/libgcc_s.so when searching for -lgcc_s
/usr/bin/ld: skipping incompatible /usr/local/lib/libgcc_s.so when searching for -lgcc_s
/usr/bin/ld: skipping incompatible /usr/local/lib/libgcc_s.so when searching for -lgcc_s
/usr/bin/ld: skipping incompatible /usr/local/lib/libgcc_s.so when searching for -lgcc_s
/usr/bin/ld: skipping incompatible /usr/local/lib/libgcc_s.so when searching for -lgcc_s
/usr/bin/ld: skipping incompatible /usr/local/lib/libgcc_s.so when searching for -lgcc_s
/usr/bin/ld: skipping incompatible /usr/local/lib/libgcc_s.so when searching for -lgcc_s
/usr/bin/ld: skipping incompatible /usr/local/lib/libgcc_s.so when searching for -lgcc_s
Objects/bytes_methods.c: In function ‘find_internal’:
Objects/bytes_methods.c:523:31: warning: ‘subobj’ may be used uninitialized in this function [-Wmaybe-uninitialized]
if (PyObject_GetBuffer(subobj, &subbuf, PyBUF_SIMPLE) != 0)
^
Objects/bytes_methods.c: In function ‘_Py_bytes_find’:
Objects/bytes_methods.c:523:31: warning: ‘subobj’ may be used uninitialized in this function [-Wmaybe-uninitialized]
Objects/bytes_methods.c:510:15: note: ‘subobj’ was declared here
PyObject *subobj;
^
Objects/bytes_methods.c: In function ‘_Py_bytes_rfind’:
Objects/bytes_methods.c:523:31: warning: ‘subobj’ may be used uninitialized in this function [-Wmaybe-uninitialized]
if (PyObject_GetBuffer(subobj, &subbuf, PyBUF_SIMPLE) != 0)
^
Objects/bytes_methods.c:510:15: note: ‘subobj’ was declared here
PyObject *subobj;
^
Objects/bytes_methods.c: In function ‘_Py_bytes_count’:
Objects/bytes_methods.c:672:31: warning: ‘sub_obj’ may be used uninitialized in this function [-Wmaybe-uninitialized]
if (PyObject_GetBuffer(sub_obj, &vsub, PyBUF_SIMPLE) != 0)
^
Python/ceval.c: In function ‘PyEval_EvalCodeEx’:
Python/ceval.c:5287:19: warning: ‘newargs’ may be used uninitialized in this function [-Wmaybe-uninitialized]
PyMem_Free(newargs);
^
Python/pyfpe.c: In function ‘PyFPE_dummy’:
Python/pyfpe.c:15:1: note: file /home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Python/pyfpe.gcda not found, execution counts estimated
}
^
./Modules/_io/clinic/textio.c.h: In function ‘_io_TextIOWrapper_seek’:
./Modules/_io/textio.c:2608:48: warning: ‘MEM[(char * {ref-all})&cookie + 20B]’ may be used uninitialized in this function [-Wmaybe-uninitialized]
decoded = _PyObject_CallMethodIdObjArgs(self->decoder, &PyId_decode,
^
./Modules/_io/textio.c:2457:17: note: ‘MEM[(char * {ref-all})&cookie + 20B]’ was declared here
cookie_type cookie;
^
./Modules/_io/textio.c:2617:54: warning: ‘MEM[(char * {ref-all})&cookie + 16B]’ may be used uninitialized in this function [-Wmaybe-uninitialized]
if (PyUnicode_GetLength(self->decoded_chars) < cookie.chars_to_skip) {
^
./Modules/_io/textio.c:2457:17: note: ‘MEM[(char * {ref-all})&cookie + 16B]’ was declared here
cookie_type cookie;
^
./Modules/_io/textio.c:2441:40: warning: ‘MEM[(char * {ref-all})&cookie + 8B]’ may be used uninitialized in this function [-Wmaybe-uninitialized]
return _textiowrapper_encoder_reset(
^
./Modules/_io/textio.c:2457:17: note: ‘MEM[(char * {ref-all})&cookie + 8B]’ was declared here
cookie_type cookie;
^
./Modules/_io/textio.c:2441:40: warning: ‘MEM[(char * {ref-all})&cookie]’ may be used uninitialized in this function [-Wmaybe-uninitialized]
return _textiowrapper_encoder_reset(
^
./Modules/_io/textio.c:2457:17: note: ‘MEM[(char * {ref-all})&cookie]’ was declared here
cookie_type cookie;
^
/usr/bin/ld: skipping incompatible /usr/local/lib/libgcc_s.so when searching for -lgcc_s
/usr/bin/ld: skipping incompatible /usr/local/lib/libgcc_s.so when searching for -lgcc_s
/usr/bin/ld: skipping incompatible /usr/local/lib/libgcc_s.so when searching for -lgcc_s
/usr/bin/ld: skipping incompatible /usr/local/lib/libgcc_s.so when searching for -lgcc_s
/usr/bin/ld: skipping incompatible /usr/local/lib/libgcc_s.so when searching for -lgcc_s
/usr/bin/ld: skipping incompatible /usr/local/lib/libgcc_s.so when searching for -lgcc_s
/usr/bin/ld: skipping incompatible /usr/local/lib/libgcc_s.so when searching for -lgcc_s
/usr/bin/ld: skipping incompatible /usr/local/lib/libgcc_s.so when searching for -lgcc_s
/usr/bin/ld: skipping incompatible /usr/local/lib/libgcc_s.so when searching for -lgcc_s
/usr/bin/ld: skipping incompatible /usr/local/lib/libgcc_s.so when searching for -lgcc_s
/usr/bin/ld: skipping incompatible /usr/local/lib/libgcc_s.so when searching for -lgcc_s
/usr/bin/ld: skipping incompatible /usr/local/lib/libgcc_s.so when searching for -lgcc_s
/usr/bin/ld: skipping incompatible /usr/local/lib/libgcc_s.so when searching for -lgcc_s
/usr/bin/ld: skipping incompatible /usr/local/lib/libgcc_s.so when searching for -lgcc_s
/usr/bin/ld: skipping incompatible /usr/local/lib/libgcc_s.so when searching for -lgcc_s
/usr/bin/ld: skipping incompatible /usr/local/lib/libgcc_s.so when searching for -lgcc_s
/usr/bin/ld: skipping incompatible /usr/local/lib/libgcc_s.so when searching for -lgcc_s
/usr/bin/ld: skipping incompatible /usr/local/lib/libgcc_s.so when searching for -lgcc_s
/usr/bin/ld: skipping incompatible /usr/local/lib/libgcc_s.so when searching for -lgcc_s
/usr/bin/ld: skipping incompatible /usr/local/lib/libgcc_s.so when searching for -lgcc_s
/usr/bin/ld: skipping incompatible /usr/local/lib/libgcc_s.so when searching for -lgcc_s
/usr/bin/ld: skipping incompatible /usr/local/lib/libgcc_s.so when searching for -lgcc_s
/usr/bin/ld: skipping incompatible /usr/local/lib/libgcc_s.so when searching for -lgcc_s
/usr/bin/ld: skipping incompatible /usr/local/lib/libgcc_s.so when searching for -lgcc_s
/usr/bin/ld: skipping incompatible /usr/local/lib/libgcc_s.so when searching for -lgcc_s
/usr/bin/ld: skipping incompatible /usr/local/lib/libgcc_s.so when searching for -lgcc_s
/usr/bin/ld: skipping incompatible /usr/local/lib/libgcc_s.so when searching for -lgcc_s
/usr/bin/ld: skipping incompatible /usr/local/lib/libgcc_s.so when searching for -lgcc_s
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_pickle.c: In function ‘load’:
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_pickle.c:5177:15: warning: ‘s’ may be used uninitialized in this function [-Wmaybe-uninitialized]
value = PyLong_FromString(s, NULL, 0);
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_pickle.c:5158:20: note: ‘s’ was declared here
char *endptr, *s;
^
/usr/bin/ld: skipping incompatible /usr/local/lib/libgcc_s.so when searching for -lgcc_s
/usr/bin/ld: skipping incompatible /usr/local/lib/libgcc_s.so when searching for -lgcc_s
/usr/bin/ld: skipping incompatible /usr/local/lib/libgcc_s.so when searching for -lgcc_s
/usr/bin/ld: skipping incompatible /usr/local/lib/libgcc_s.so when searching for -lgcc_s
/usr/bin/ld: skipping incompatible /usr/local/lib/libgcc_s.so when searching for -lgcc_s
/usr/bin/ld: skipping incompatible /usr/local/lib/libgcc_s.so when searching for -lgcc_s
/usr/bin/ld: skipping incompatible /usr/local/lib/libgcc_s.so when searching for -lgcc_s
/usr/bin/ld: skipping incompatible /usr/local/lib/libgcc_s.so when searching for -lgcc_s
/usr/bin/ld: skipping incompatible /usr/local/lib/libgcc_s.so when searching for -lgcc_s
/usr/bin/ld: skipping incompatible /usr/local/lib/libgcc_s.so when searching for -lgcc_s
/usr/bin/ld: skipping incompatible /usr/local/lib/libgcc_s.so when searching for -lgcc_s
/usr/bin/ld: skipping incompatible /usr/local/lib/libgcc_s.so when searching for -lgcc_s
/usr/bin/ld: skipping incompatible /usr/local/lib/libgcc_s.so when searching for -lgcc_s
/usr/bin/ld: skipping incompatible /usr/local/lib/libgcc_s.so when searching for -lgcc_s
/usr/bin/ld: skipping incompatible /usr/local/lib/libgcc_s.so when searching for -lgcc_s
/usr/bin/ld: skipping incompatible /usr/local/lib/libgcc_s.so when searching for -lgcc_s
/usr/bin/ld: skipping incompatible /usr/local/lib/libgcc_s.so when searching for -lgcc_s
/usr/bin/ld: skipping incompatible /usr/local/lib/libgcc_s.so when searching for -lgcc_s
/usr/bin/ld: skipping incompatible /usr/local/lib/libgcc_s.so when searching for -lgcc_s
/usr/bin/ld: skipping incompatible /usr/local/lib/libgcc_s.so when searching for -lgcc_s
/usr/bin/ld: skipping incompatible /usr/local/lib/libgcc_s.so when searching for -lgcc_s
/usr/bin/ld: skipping incompatible /usr/local/lib/libgcc_s.so when searching for -lgcc_s
/usr/bin/ld: skipping incompatible /usr/local/lib/libgcc_s.so when searching for -lgcc_s
/usr/bin/ld: skipping incompatible /usr/local/lib/libgcc_s.so when searching for -lgcc_s
/usr/bin/ld: skipping incompatible /usr/local/lib/libgcc_s.so when searching for -lgcc_s
/usr/bin/ld: skipping incompatible /usr/local/lib/libgcc_s.so when searching for -lgcc_s
/usr/bin/ld: skipping incompatible /usr/local/lib/libgcc_s.so when searching for -lgcc_s
/usr/bin/ld: skipping incompatible /usr/local/lib/libgcc_s.so when searching for -lgcc_s
/usr/bin/ld: skipping incompatible /usr/local/lib/libgcc_s.so when searching for -lgcc_s
/usr/bin/ld: skipping incompatible /usr/local/lib/libgcc_s.so when searching for -lgcc_s
/usr/bin/ld: skipping incompatible /usr/local/lib/libgcc_s.so when searching for -lgcc_s
/usr/bin/ld: skipping incompatible /usr/local/lib/libgcc_s.so when searching for -lgcc_s
/usr/bin/ld: skipping incompatible /usr/local/lib/libgcc_s.so when searching for -lgcc_s
/usr/bin/ld: skipping incompatible /usr/local/lib/libgcc_s.so when searching for -lgcc_s
/usr/bin/ld: skipping incompatible /usr/local/lib/libgcc_s.so when searching for -lgcc_s
/usr/bin/ld: skipping incompatible /usr/local/lib/libgcc_s.so when searching for -lgcc_s
/usr/bin/ld: skipping incompatible /usr/local/lib/libgcc_s.so when searching for -lgcc_s
/usr/bin/ld: skipping incompatible /usr/local/lib/libgcc_s.so when searching for -lgcc_s
/usr/bin/ld: skipping incompatible /usr/local/lib/libgcc_s.so when searching for -lgcc_s
/usr/bin/ld: skipping incompatible /usr/local/lib/libgcc_s.so when searching for -lgcc_s
/usr/bin/ld: skipping incompatible /usr/local/lib/libgcc_s.so when searching for -lgcc_s
/usr/bin/ld: skipping incompatible /usr/local/lib/libgcc_s.so when searching for -lgcc_s
/usr/bin/ld: skipping incompatible /usr/local/lib/libgcc_s.so when searching for -lgcc_s
/usr/bin/ld: skipping incompatible /usr/local/lib/libgcc_s.so when searching for -lgcc_s
In file included from /home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_ssl.c:390:0:
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_ssl/debughelpers.c: In function ‘_PySSLContext_set_keylog_filename’:
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_ssl/debughelpers.c:180:5: error: implicit declaration of function ‘SSL_CTX_set_keylog_callback’ [-Werror=implicit-function-declaration]
SSL_CTX_set_keylog_callback(self->ctx, NULL);
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_ssl.c: In function ‘_ssl_configure_hostname’:
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_ssl.c:765:13: error: implicit declaration of function ‘ASN1_STRING_get0_data’ [-Werror=implicit-function-declaration]
if (!X509_VERIFY_PARAM_set1_ip(param, ASN1_STRING_get0_data(ip),
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_ssl.c:766:44: warning: passing argument 2 of ‘X509_VERIFY_PARAM_set1_ip’ makes pointer from integer without a cast [enabled by default]
ASN1_STRING_length(ip))) {
^
In file included from /usr/include/openssl/x509.h:581:0,
from /home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_ssl.h:6,
from /home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_ssl.c:31:
/usr/include/openssl/x509_vfy.h:604:5: note: expected ‘const unsigned char *’ but argument is of type ‘int’
int X509_VERIFY_PARAM_set1_ip(X509_VERIFY_PARAM *param,
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_ssl.c: In function ‘newPySSLSocket’:
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_ssl.c:831:9: error: implicit declaration of function ‘BIO_up_ref’ [-Werror=implicit-function-declaration]
BIO_up_ref(inbio->bio);
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_ssl.c: In function ‘_create_tuple_for_X509_NAME’:
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_ssl.c:1086:13: error: implicit declaration of function ‘X509_NAME_ENTRY_set’ [-Werror=implicit-function-declaration]
if (rdn_level != X509_NAME_ENTRY_set(entry)) {
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_ssl.c: In function ‘_get_peer_alt_names’:
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_ssl.c:1251:49: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast]
v = PyUnicode_FromStringAndSize((char *)ASN1_STRING_get0_data(as),
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_ssl.c: In function ‘_decode_certificate’:
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_ssl.c:1611:5: error: implicit declaration of function ‘X509_get0_notBefore’ [-Werror=implicit-function-declaration]
notBefore = X509_get0_notBefore(certificate);
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_ssl.c:1611:15: warning: assignment makes pointer from integer without a cast [enabled by default]
notBefore = X509_get0_notBefore(certificate);
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_ssl.c:1628:5: error: implicit declaration of function ‘X509_get0_notAfter’ [-Werror=implicit-function-declaration]
notAfter = X509_get0_notAfter(certificate);
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_ssl.c:1628:14: warning: assignment makes pointer from integer without a cast [enabled by default]
notAfter = X509_get0_notAfter(certificate);
^
In file included from /home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_ssl.c:1724:0:
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_ssl/cert.c: In function ‘newCertificate’:
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_ssl/cert.c:30:9: error: implicit declaration of function ‘X509_up_ref’ [-Werror=implicit-function-declaration]
X509_up_ref(cert);
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_ssl.c: In function ‘_ssl__SSLSocket_get_verified_chain_impl’:
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_ssl.c:1828:29: warning: initialization makes pointer from integer without a cast [enabled by default]
STACK_OF(X509) *chain = SSL_get0_verified_chain(self->ssl);
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_ssl.c: In function ‘cipher_to_dict’:
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_ssl.c:1946:5: error: implicit declaration of function ‘SSL_CIPHER_is_aead’ [-Werror=implicit-function-declaration]
aead = SSL_CIPHER_is_aead(cipher);
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_ssl.c:1947:5: error: implicit declaration of function ‘SSL_CIPHER_get_cipher_nid’ [-Werror=implicit-function-declaration]
nid = SSL_CIPHER_get_cipher_nid(cipher);
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_ssl.c:1949:5: error: implicit declaration of function ‘SSL_CIPHER_get_digest_nid’ [-Werror=implicit-function-declaration]
nid = SSL_CIPHER_get_digest_nid(cipher);
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_ssl.c:1951:5: error: implicit declaration of function ‘SSL_CIPHER_get_kx_nid’ [-Werror=implicit-function-declaration]
nid = SSL_CIPHER_get_kx_nid(cipher);
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_ssl.c:1953:5: error: implicit declaration of function ‘SSL_CIPHER_get_auth_nid’ [-Werror=implicit-function-declaration]
nid = SSL_CIPHER_get_auth_nid(cipher);
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_ssl.c: In function ‘_ssl__SSLSocket_compression_impl’:
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_ssl.c:2078:5: error: implicit declaration of function ‘COMP_get_type’ [-Werror=implicit-function-declaration]
if (comp_method == NULL || COMP_get_type(comp_method) == NID_undef)
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_ssl.c: In function ‘_ssl__SSLSocket_write_impl’:
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_ssl.c:2335:9: error: implicit declaration of function ‘SSL_write_ex’ [-Werror=implicit-function-declaration]
retval = SSL_write_ex(self->ssl, b->buf, (int)b->len, &count);
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_ssl.c: In function ‘_ssl__SSLSocket_read_impl’:
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_ssl.c:2487:9: error: implicit declaration of function ‘SSL_read_ex’ [-Werror=implicit-function-declaration]
retval = SSL_read_ex(self->ssl, mem, len, &count);
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_ssl.c: In function ‘_ssl__SSLContext_impl’:
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_ssl.c:3013:9: error: implicit declaration of function ‘TLS_method’ [-Werror=implicit-function-declaration]
method = TLS_method();
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_ssl.c:3013:16: warning: assignment makes pointer from integer without a cast [enabled by default]
method = TLS_method();
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_ssl.c:3016:9: error: implicit declaration of function ‘TLS_client_method’ [-Werror=implicit-function-declaration]
method = TLS_client_method();
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_ssl.c:3016:16: warning: assignment makes pointer from integer without a cast [enabled by default]
method = TLS_client_method();
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_ssl.c:3019:9: error: implicit declaration of function ‘TLS_server_method’ [-Werror=implicit-function-declaration]
method = TLS_server_method();
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_ssl.c:3019:16: warning: assignment makes pointer from integer without a cast [enabled by default]
method = TLS_server_method();
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_ssl.c:3122:9: error: implicit declaration of function ‘SSL_CTX_set_min_proto_version’ [-Werror=implicit-function-declaration]
result = SSL_CTX_set_min_proto_version(ctx, PY_SSL_MIN_PROTOCOL);
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_ssl.c: In function ‘set_min_max_proto_version’:
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_ssl.c:3482:9: error: implicit declaration of function ‘SSL_CTX_set_max_proto_version’ [-Werror=implicit-function-declaration]
result = SSL_CTX_set_max_proto_version(self->ctx, v);
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_ssl.c: In function ‘get_minimum_version’:
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_ssl.c:3495:37: error: ‘SSL_CTRL_GET_MIN_PROTO_VERSION’ undeclared (first use in this function)
int v = SSL_CTX_ctrl(self->ctx, SSL_CTRL_GET_MIN_PROTO_VERSION, 0, NULL);
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_ssl.c:3495:37: note: each undeclared identifier is reported only once for each function it appears in
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_ssl.c: In function ‘get_maximum_version’:
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_ssl.c:3511:37: error: ‘SSL_CTRL_GET_MAX_PROTO_VERSION’ undeclared (first use in this function)
int v = SSL_CTX_ctrl(self->ctx, SSL_CTRL_GET_MAX_PROTO_VERSION, 0, NULL);
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_ssl.c: In function ‘get_security_level’:
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_ssl.c:3560:5: error: implicit declaration of function ‘SSL_CTX_get_security_level’ [-Werror=implicit-function-declaration]
return PyLong_FromLong(SSL_CTX_get_security_level(self->ctx));
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_ssl.c: In function ‘_ssl__SSLContext_load_cert_chain_impl’:
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_ssl.c:3801:5: error: implicit declaration of function ‘SSL_CTX_get_default_passwd_cb’ [-Werror=implicit-function-declaration]
pem_password_cb *orig_passwd_cb = SSL_CTX_get_default_passwd_cb(self->ctx);
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_ssl.c:3801:39: warning: initialization makes pointer from integer without a cast [enabled by default]
pem_password_cb *orig_passwd_cb = SSL_CTX_get_default_passwd_cb(self->ctx);
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_ssl.c:3802:5: error: implicit declaration of function ‘SSL_CTX_get_default_passwd_cb_userdata’ [-Werror=implicit-function-declaration]
void *orig_passwd_userdata = SSL_CTX_get_default_passwd_cb_userdata(self->ctx);
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_ssl.c:3802:34: warning: initialization makes pointer from integer without a cast [enabled by default]
void *orig_passwd_userdata = SSL_CTX_get_default_passwd_cb_userdata(self->ctx);
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_ssl.c: In function ‘_add_ca_certs’:
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_ssl.c:3935:37: warning: passing argument 3 of ‘PEM_read_bio_X509’ makes pointer from integer without a cast [enabled by default]
);
^
In file included from /home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_ssl.c:59:0:
/usr/include/openssl/pem.h:451:1: note: expected ‘int (*)(char *, int, int, void *)’ but argument is of type ‘int’
DECLARE_PEM_rw(X509, X509)
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_ssl.c:3935:37: warning: passing argument 4 of ‘PEM_read_bio_X509’ makes pointer from integer without a cast [enabled by default]
);
^
In file included from /home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_ssl.c:59:0:
/usr/include/openssl/pem.h:451:1: note: expected ‘void *’ but argument is of type ‘int’
DECLARE_PEM_rw(X509, X509)
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_ssl.c: In function ‘_ssl__SSLContext_cert_store_stats_impl’:
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_ssl.c:4495:5: error: implicit declaration of function ‘X509_STORE_get0_objects’ [-Werror=implicit-function-declaration]
objs = X509_STORE_get0_objects(store);
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_ssl.c:4495:10: warning: assignment makes pointer from integer without a cast [enabled by default]
objs = X509_STORE_get0_objects(store);
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_ssl.c:4498:9: error: implicit declaration of function ‘X509_OBJECT_get_type’ [-Werror=implicit-function-declaration]
switch (X509_OBJECT_get_type(obj)) {
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_ssl.c:4501:17: error: implicit declaration of function ‘X509_OBJECT_get0_X509’ [-Werror=implicit-function-declaration]
if (X509_check_ca(X509_OBJECT_get0_X509(obj))) {
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_ssl.c:4501:17: warning: passing argument 1 of ‘X509_check_ca’ makes pointer from integer without a cast [enabled by default]
In file included from /home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_ssl.c:58:0:
/usr/include/openssl/x509v3.h:697:5: note: expected ‘struct X509 *’ but argument is of type ‘int’
int X509_check_ca(X509 *x);
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_ssl.c: In function ‘_ssl__SSLContext_get_ca_certs_impl’:
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_ssl.c:4546:10: warning: assignment makes pointer from integer without a cast [enabled by default]
objs = X509_STORE_get0_objects(store);
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_ssl.c:4557:14: warning: assignment makes pointer from integer without a cast [enabled by default]
cert = X509_OBJECT_get0_X509(obj);
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_ssl.c: In function ‘PySSLSession_get_ticket_lifetime_hint’:
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_ssl.c:4984:5: error: implicit declaration of function ‘SSL_SESSION_get_ticket_lifetime_hint’ [-Werror=implicit-function-declaration]
unsigned long hint = SSL_SESSION_get_ticket_lifetime_hint(self->session);
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_ssl.c: In function ‘PySSLSession_get_has_ticket’:
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_ssl.c:5006:5: error: implicit declaration of function ‘SSL_SESSION_has_ticket’ [-Werror=implicit-function-declaration]
if (SSL_SESSION_has_ticket(self->session)) {
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_ssl.c: In function ‘sslmodule_init_versioninfo’:
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_ssl.c:6059:5: error: implicit declaration of function ‘OpenSSL_version_num’ [-Werror=implicit-function-declaration]
libver = OpenSSL_version_num();
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_ssl.c:6069:5: error: implicit declaration of function ‘OpenSSL_version’ [-Werror=implicit-function-declaration]
r = PyUnicode_FromString(OpenSSL_version(OPENSSL_VERSION));
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_ssl.c:6069:46: error: ‘OPENSSL_VERSION’ undeclared (first use in this function)
r = PyUnicode_FromString(OpenSSL_version(OPENSSL_VERSION));
^
cc1: some warnings being treated as errors
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_hashopenssl.c: In function ‘py_digest_name’:
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_hashopenssl.c:158:10: error: ‘NID_sha3_224’ undeclared (first use in this function)
case NID_sha3_224:
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_hashopenssl.c:158:10: note: each undeclared identifier is reported only once for each function it appears in
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_hashopenssl.c:161:10: error: ‘NID_sha3_256’ undeclared (first use in this function)
case NID_sha3_256:
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_hashopenssl.c:164:10: error: ‘NID_sha3_384’ undeclared (first use in this function)
case NID_sha3_384:
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_hashopenssl.c:167:10: error: ‘NID_sha3_512’ undeclared (first use in this function)
case NID_sha3_512:
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_hashopenssl.c:172:10: error: ‘NID_shake128’ undeclared (first use in this function)
case NID_shake128:
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_hashopenssl.c:175:10: error: ‘NID_shake256’ undeclared (first use in this function)
case NID_shake256:
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_hashopenssl.c:180:10: error: ‘NID_blake2s256’ undeclared (first use in this function)
case NID_blake2s256:
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_hashopenssl.c:183:10: error: ‘NID_blake2b512’ undeclared (first use in this function)
case NID_blake2b512:
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_hashopenssl.c: In function ‘py_digest_by_name’:
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_hashopenssl.c:222:13: error: implicit declaration of function ‘EVP_sha3_224’ [-Werror=implicit-function-declaration]
digest = EVP_sha3_224();
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_hashopenssl.c:222:20: warning: assignment makes pointer from integer without a cast [enabled by default]
digest = EVP_sha3_224();
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_hashopenssl.c:225:13: error: implicit declaration of function ‘EVP_sha3_256’ [-Werror=implicit-function-declaration]
digest = EVP_sha3_256();
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_hashopenssl.c:225:20: warning: assignment makes pointer from integer without a cast [enabled by default]
digest = EVP_sha3_256();
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_hashopenssl.c:228:13: error: implicit declaration of function ‘EVP_sha3_384’ [-Werror=implicit-function-declaration]
digest = EVP_sha3_384();
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_hashopenssl.c:228:20: warning: assignment makes pointer from integer without a cast [enabled by default]
digest = EVP_sha3_384();
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_hashopenssl.c:231:13: error: implicit declaration of function ‘EVP_sha3_512’ [-Werror=implicit-function-declaration]
digest = EVP_sha3_512();
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_hashopenssl.c:231:20: warning: assignment makes pointer from integer without a cast [enabled by default]
digest = EVP_sha3_512();
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_hashopenssl.c:236:13: error: implicit declaration of function ‘EVP_shake128’ [-Werror=implicit-function-declaration]
digest = EVP_shake128();
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_hashopenssl.c:236:20: warning: assignment makes pointer from integer without a cast [enabled by default]
digest = EVP_shake128();
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_hashopenssl.c:239:13: error: implicit declaration of function ‘EVP_shake256’ [-Werror=implicit-function-declaration]
digest = EVP_shake256();
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_hashopenssl.c:239:20: warning: assignment makes pointer from integer without a cast [enabled by default]
digest = EVP_shake256();
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_hashopenssl.c:244:13: error: implicit declaration of function ‘EVP_blake2s256’ [-Werror=implicit-function-declaration]
digest = EVP_blake2s256();
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_hashopenssl.c:244:20: warning: assignment makes pointer from integer without a cast [enabled by default]
digest = EVP_blake2s256();
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_hashopenssl.c:247:13: error: implicit declaration of function ‘EVP_blake2b512’ [-Werror=implicit-function-declaration]
digest = EVP_blake2b512();
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_hashopenssl.c:247:20: warning: assignment makes pointer from integer without a cast [enabled by default]
digest = EVP_blake2b512();
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_hashopenssl.c: In function ‘newEVPobject’:
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_hashopenssl.c:312:5: error: implicit declaration of function ‘EVP_MD_CTX_new’ [-Werror=implicit-function-declaration]
retval->ctx = EVP_MD_CTX_new();
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_hashopenssl.c:312:17: warning: assignment makes pointer from integer without a cast [enabled by default]
retval->ctx = EVP_MD_CTX_new();
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_hashopenssl.c: In function ‘EVP_dealloc’:
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_hashopenssl.c:350:5: error: implicit declaration of function ‘EVP_MD_CTX_free’ [-Werror=implicit-function-declaration]
EVP_MD_CTX_free(self->ctx);
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_hashopenssl.c: In function ‘EVP_digest_impl’:
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_hashopenssl.c:404:14: warning: assignment makes pointer from integer without a cast [enabled by default]
temp_ctx = EVP_MD_CTX_new();
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_hashopenssl.c: In function ‘EVP_hexdigest_impl’:
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_hashopenssl.c:438:14: warning: assignment makes pointer from integer without a cast [enabled by default]
temp_ctx = EVP_MD_CTX_new();
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_hashopenssl.c: In function ‘EVPXOF_digest_impl’:
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_hashopenssl.c:616:14: warning: assignment makes pointer from integer without a cast [enabled by default]
temp_ctx = EVP_MD_CTX_new();
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_hashopenssl.c:628:5: error: implicit declaration of function ‘EVP_DigestFinalXOF’ [-Werror=implicit-function-declaration]
if (!EVP_DigestFinalXOF(temp_ctx,
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_hashopenssl.c: In function ‘EVPXOF_hexdigest_impl’:
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_hashopenssl.c:663:14: warning: assignment makes pointer from integer without a cast [enabled by default]
temp_ctx = EVP_MD_CTX_new();
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_hashopenssl.c: In function ‘EVPnew’:
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_hashopenssl.c:761:33: error: ‘EVP_MD_FLAG_XOF’ undeclared (first use in this function)
if ((EVP_MD_flags(digest) & EVP_MD_FLAG_XOF) == EVP_MD_FLAG_XOF) {
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_hashopenssl.c: In function ‘_hashlib_openssl_sha3_224_impl’:
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_hashopenssl.c:1009:5: warning: passing argument 3 of ‘EVP_fast_new’ makes pointer from integer without a cast [enabled by default]
return EVP_fast_new(module, data_obj, EVP_sha3_224(), usedforsecurity);
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_hashopenssl.c:852:1: note: expected ‘const struct EVP_MD *’ but argument is of type ‘int’
EVP_fast_new(PyObject *module, PyObject *data_obj, const EVP_MD *digest,
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_hashopenssl.c: In function ‘_hashlib_openssl_sha3_256_impl’:
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_hashopenssl.c:1028:5: warning: passing argument 3 of ‘EVP_fast_new’ makes pointer from integer without a cast [enabled by default]
return EVP_fast_new(module, data_obj, EVP_sha3_256(), usedforsecurity);
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_hashopenssl.c:852:1: note: expected ‘const struct EVP_MD *’ but argument is of type ‘int’
EVP_fast_new(PyObject *module, PyObject *data_obj, const EVP_MD *digest,
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_hashopenssl.c: In function ‘_hashlib_openssl_sha3_384_impl’:
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_hashopenssl.c:1047:5: warning: passing argument 3 of ‘EVP_fast_new’ makes pointer from integer without a cast [enabled by default]
return EVP_fast_new(module, data_obj, EVP_sha3_384(), usedforsecurity);
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_hashopenssl.c:852:1: note: expected ‘const struct EVP_MD *’ but argument is of type ‘int’
EVP_fast_new(PyObject *module, PyObject *data_obj, const EVP_MD *digest,
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_hashopenssl.c: In function ‘_hashlib_openssl_sha3_512_impl’:
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_hashopenssl.c:1066:5: warning: passing argument 3 of ‘EVP_fast_new’ makes pointer from integer without a cast [enabled by default]
return EVP_fast_new(module, data_obj, EVP_sha3_512(), usedforsecurity);
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_hashopenssl.c:852:1: note: expected ‘const struct EVP_MD *’ but argument is of type ‘int’
EVP_fast_new(PyObject *module, PyObject *data_obj, const EVP_MD *digest,
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_hashopenssl.c: In function ‘_hashlib_openssl_shake_128_impl’:
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_hashopenssl.c:1087:5: warning: passing argument 3 of ‘EVP_fast_new’ makes pointer from integer without a cast [enabled by default]
return EVP_fast_new(module, data_obj, EVP_shake128(), usedforsecurity);
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_hashopenssl.c:852:1: note: expected ‘const struct EVP_MD *’ but argument is of type ‘int’
EVP_fast_new(PyObject *module, PyObject *data_obj, const EVP_MD *digest,
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_hashopenssl.c: In function ‘_hashlib_openssl_shake_256_impl’:
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_hashopenssl.c:1106:5: warning: passing argument 3 of ‘EVP_fast_new’ makes pointer from integer without a cast [enabled by default]
return EVP_fast_new(module, data_obj, EVP_shake256(), usedforsecurity);
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_hashopenssl.c:852:1: note: expected ‘const struct EVP_MD *’ but argument is of type ‘int’
EVP_fast_new(PyObject *module, PyObject *data_obj, const EVP_MD *digest,
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_hashopenssl.c: In function ‘_hashlib_scrypt_impl’:
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_hashopenssl.c:1298:5: error: implicit declaration of function ‘EVP_PBE_scrypt’ [-Werror=implicit-function-declaration]
retval = EVP_PBE_scrypt(NULL, 0, NULL, 0, n, r, p, maxmem, NULL, 0);
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_hashopenssl.c: In function ‘_hashlib_hmac_new_impl’:
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_hashopenssl.c:1428:5: error: implicit declaration of function ‘HMAC_CTX_new’ [-Werror=implicit-function-declaration]
ctx = HMAC_CTX_new();
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_hashopenssl.c:1428:9: warning: assignment makes pointer from integer without a cast [enabled by default]
ctx = HMAC_CTX_new();
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_hashopenssl.c:1461:5: error: implicit declaration of function ‘HMAC_CTX_free’ [-Werror=implicit-function-declaration]
if (ctx) HMAC_CTX_free(ctx);
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_hashopenssl.c: In function ‘_hmac_digest_size’:
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_hashopenssl.c:1480:5: error: implicit declaration of function ‘HMAC_CTX_get_md’ [-Werror=implicit-function-declaration]
unsigned int digest_size = EVP_MD_size(HMAC_CTX_get_md(self->ctx));
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_hashopenssl.c:1480:5: warning: passing argument 1 of ‘EVP_MD_size’ makes pointer from integer without a cast [enabled by default]
In file included from /home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_hashopenssl.c:28:0:
/usr/include/openssl/evp.h:523:5: note: expected ‘const struct EVP_MD *’ but argument is of type ‘int’
int EVP_MD_size(const EVP_MD *md);
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_hashopenssl.c: In function ‘_hashlib_HMAC_copy_impl’:
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_hashopenssl.c:1529:21: warning: initialization makes pointer from integer without a cast [enabled by default]
HMAC_CTX *ctx = HMAC_CTX_new();
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_hashopenssl.c: In function ‘_hmac_repr’:
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_hashopenssl.c:1564:5: warning: passing argument 1 of ‘py_digest_name’ makes pointer from integer without a cast [enabled by default]
PyObject *digest_name = py_digest_name(HMAC_CTX_get_md(self->ctx));
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_hashopenssl.c:122:1: note: expected ‘const struct EVP_MD *’ but argument is of type ‘int’
py_digest_name(const EVP_MD *md)
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_hashopenssl.c: In function ‘_hmac_digest’:
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_hashopenssl.c:1595:26: warning: initialization makes pointer from integer without a cast [enabled by default]
HMAC_CTX *temp_ctx = HMAC_CTX_new();
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_hashopenssl.c: In function ‘_hashlib_hmac_get_block_size’:
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_hashopenssl.c:1672:24: warning: initialization makes pointer from integer without a cast [enabled by default]
const EVP_MD *md = HMAC_CTX_get_md(self->ctx);
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_hashopenssl.c: In function ‘_hashlib_hmac_get_name’:
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_hashopenssl.c:1682:5: warning: passing argument 1 of ‘py_digest_name’ makes pointer from integer without a cast [enabled by default]
PyObject *digest_name = py_digest_name(HMAC_CTX_get_md(self->ctx));
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_hashopenssl.c:122:1: note: expected ‘const struct EVP_MD *’ but argument is of type ‘int’
py_digest_name(const EVP_MD *md)
^
cc1: some warnings being treated as errors
/usr/bin/ld: skipping incompatible /usr/local/lib/libgcc_s.so when searching for -lgcc_s
/usr/bin/ld: skipping incompatible /usr/local/lib/libgcc_s.so when searching for -lgcc_s
/usr/bin/ld: skipping incompatible /usr/local/lib/libgcc_s.so when searching for -lgcc_s
/usr/bin/ld: skipping incompatible /usr/local/lib/libgcc_s.so when searching for -lgcc_s
/usr/bin/ld: skipping incompatible /usr/local/lib/libgcc_s.so when searching for -lgcc_s
/usr/bin/ld: skipping incompatible /usr/local/lib/libgcc_s.so when searching for -lgcc_s
/usr/bin/ld: skipping incompatible /usr/local/lib/libgcc_s.so when searching for -lgcc_s
/usr/bin/ld: skipping incompatible /usr/local/lib/libgcc_s.so when searching for -lgcc_s
/usr/bin/ld: skipping incompatible /usr/local/lib/libgcc_s.so when searching for -lgcc_s
/usr/bin/ld: skipping incompatible /usr/local/lib/libgcc_s.so when searching for -lgcc_s
In file included from /home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_sha3/sha3module.c:118:0:
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_sha3/kcp/KeccakP-1600-inplace32BI.c: In function ‘_PySHA3_KeccakP1600_ExtractAndAddLanes’:
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_sha3/kcp/KeccakP-1600-inplace32BI.c:421:9: warning: dereferencing type-punned pointer will break strict-aliasing rules [-Wstrict-aliasing]
((UINT32*)(output+lanePosition*8))[0] = ((UINT32*)(input+lanePosition*8))[0] ^ (*(const UINT32*)(laneAsBytes+0));
^
/usr/bin/ld: skipping incompatible /usr/local/lib/libgcc_s.so when searching for -lgcc_s
/usr/bin/ld: skipping incompatible /usr/local/lib/libgcc_s.so when searching for -lgcc_s
/usr/bin/ld: skipping incompatible /usr/local/lib/libgcc_s.so when searching for -lgcc_s
/usr/bin/ld: skipping incompatible /usr/local/lib/libgcc_s.so when searching for -lgcc_s
/usr/bin/ld: skipping incompatible /usr/local/lib/libgcc_s.so when searching for -lgcc_s
/usr/bin/ld: skipping incompatible /usr/local/lib/libgcc_s.so when searching for -lgcc_s
/usr/bin/ld: skipping incompatible /usr/local/lib/libgcc_s.so when searching for -lgcc_s
/usr/bin/ld: skipping incompatible /usr/local/lib/libgcc_s.so when searching for -lgcc_s
/usr/bin/ld: skipping incompatible /usr/local/lib/libgcc_s.so when searching for -lgcc_s
/usr/bin/ld: skipping incompatible /usr/local/lib/libgcc_s.so when searching for -lgcc_s
/usr/bin/ld: skipping incompatible /usr/local/lib/libgcc_s.so when searching for -lgcc_s
/usr/bin/ld: skipping incompatible /usr/local/lib/libgcc_s.so when searching for -lgcc_s
/usr/bin/ld: skipping incompatible /usr/local/lib/libgcc_s.so when searching for -lgcc_s
/usr/bin/ld: skipping incompatible /usr/local/lib/libgcc_s.so when searching for -lgcc_s
/usr/bin/ld: skipping incompatible /usr/local/lib/libgcc_s.so when searching for -lgcc_s
/usr/bin/ld: skipping incompatible /usr/local/lib/libgcc_s.so when searching for -lgcc_s
/usr/bin/ld: skipping incompatible /usr/local/lib/libgcc_s.so when searching for -lgcc_s
/usr/bin/ld: skipping incompatible /usr/local/lib/libgcc_s.so when searching for -lgcc_s
/usr/bin/ld: skipping incompatible /usr/local/lib/libgcc_s.so when searching for -lgcc_s
/usr/bin/ld: skipping incompatible /usr/local/lib/libgcc_s.so when searching for -lgcc_s
/usr/bin/ld: skipping incompatible /usr/local/lib/libgcc_s.so when searching for -lgcc_s
/usr/bin/ld: skipping incompatible /usr/local/lib/libgcc_s.so when searching for -lgcc_s
/usr/bin/ld: skipping incompatible /usr/local/lib/libgcc_s.so when searching for -lgcc_s
/usr/bin/ld: skipping incompatible /usr/local/lib/libgcc_s.so when searching for -lgcc_s
/usr/bin/ld: skipping incompatible /usr/local/lib/libgcc_s.so when searching for -lgcc_s
/usr/bin/ld: skipping incompatible /usr/local/lib/libgcc_s.so when searching for -lgcc_s
/usr/bin/ld: skipping incompatible /usr/local/lib/libgcc_s.so when searching for -lgcc_s
/usr/bin/ld: skipping incompatible /usr/local/lib/libgcc_s.so when searching for -lgcc_s
/usr/bin/ld: skipping incompatible /usr/local/lib/libgcc_s.so when searching for -lgcc_s
/usr/bin/ld: skipping incompatible /usr/local/lib/libgcc_s.so when searching for -lgcc_s
/usr/bin/ld: skipping incompatible /usr/local/lib/libgcc_s.so when searching for -lgcc_s
/usr/bin/ld: skipping incompatible /usr/local/lib/libgcc_s.so when searching for -lgcc_s
/usr/bin/ld: skipping incompatible /usr/local/lib/libgcc_s.so when searching for -lgcc_s
/usr/bin/ld: skipping incompatible /usr/local/lib/libgcc_s.so when searching for -lgcc_s
/usr/bin/ld: skipping incompatible /usr/local/lib/libgcc_s.so when searching for -lgcc_s
/usr/bin/ld: skipping incompatible /usr/local/lib/libgcc_s.so when searching for -lgcc_s
/usr/bin/ld: skipping incompatible /usr/local/lib/libgcc_s.so when searching for -lgcc_s
/usr/bin/ld: skipping incompatible /usr/local/lib/libgcc_s.so when searching for -lgcc_s
/usr/bin/ld: skipping incompatible /usr/local/lib/libgcc_s.so when searching for -lgcc_s
/usr/bin/ld: skipping incompatible /usr/local/lib/libgcc_s.so when searching for -lgcc_s
/usr/bin/ld: skipping incompatible /usr/local/lib/libgcc_s.so when searching for -lgcc_s
/usr/bin/ld: skipping incompatible /usr/local/lib/libgcc_s.so when searching for -lgcc_s
/usr/bin/ld: skipping incompatible /usr/local/lib/libgcc_s.so when searching for -lgcc_s
/usr/bin/ld: skipping incompatible /usr/local/lib/libgcc_s.so when searching for -lgcc_s
/usr/bin/ld: skipping incompatible /usr/local/lib/libgcc_s.so when searching for -lgcc_s
/usr/bin/ld: skipping incompatible /usr/local/lib/libgcc_s.so when searching for -lgcc_s
/usr/bin/ld: skipping incompatible /usr/local/lib/libgcc_s.so when searching for -lgcc_s
/usr/bin/ld: skipping incompatible /usr/local/lib/libgcc_s.so when searching for -lgcc_s
/usr/bin/ld: skipping incompatible /usr/local/lib/libgcc_s.so when searching for -lgcc_s
/usr/bin/ld: skipping incompatible /usr/local/lib/libgcc_s.so when searching for -lgcc_s
/usr/bin/ld: skipping incompatible /usr/local/lib/libgcc_s.so when searching for -lgcc_s
/usr/bin/ld: skipping incompatible /usr/local/lib/libgcc_s.so when searching for -lgcc_s
/usr/bin/ld: skipping incompatible /usr/local/lib/libgcc_s.so when searching for -lgcc_s
/usr/bin/ld: skipping incompatible /usr/local/lib/libgcc_s.so when searching for -lgcc_s
/usr/bin/ld: skipping incompatible /usr/local/lib/libgcc_s.so when searching for -lgcc_s
/usr/bin/ld: skipping incompatible /usr/local/lib/libgcc_s.so when searching for -lgcc_s
/usr/bin/ld: skipping incompatible /usr/local/lib/libgcc_s.so when searching for -lgcc_s
/usr/bin/ld: skipping incompatible /usr/local/lib/libgcc_s.so when searching for -lgcc_s
/usr/bin/ld: skipping incompatible /usr/local/lib/libgcc_s.so when searching for -lgcc_s
/usr/bin/ld: skipping incompatible /usr/local/lib/libgcc_s.so when searching for -lgcc_s
/usr/bin/ld: skipping incompatible /usr/local/lib/libgcc_s.so when searching for -lgcc_s
/usr/bin/ld: skipping incompatible /usr/local/lib/libgcc_s.so when searching for -lgcc_s
/usr/bin/ld: skipping incompatible /usr/local/lib/libgcc_s.so when searching for -lgcc_s
/usr/bin/ld: skipping incompatible /usr/local/lib/libgcc_s.so when searching for -lgcc_s
/usr/bin/ld: skipping incompatible /usr/local/lib/libgcc_s.so when searching for -lgcc_s
/usr/bin/ld: skipping incompatible /usr/local/lib/libgcc_s.so when searching for -lgcc_s
In file included from /home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_ssl.c:390:0:
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_ssl/debughelpers.c: In function ‘_PySSLContext_set_keylog_filename’:
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_ssl/debughelpers.c:180:5: error: implicit declaration of function ‘SSL_CTX_set_keylog_callback’ [-Werror=implicit-function-declaration]
SSL_CTX_set_keylog_callback(self->ctx, NULL);
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_ssl.c: In function ‘_ssl_configure_hostname’:
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_ssl.c:765:13: error: implicit declaration of function ‘ASN1_STRING_get0_data’ [-Werror=implicit-function-declaration]
if (!X509_VERIFY_PARAM_set1_ip(param, ASN1_STRING_get0_data(ip),
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_ssl.c:766:44: warning: passing argument 2 of ‘X509_VERIFY_PARAM_set1_ip’ makes pointer from integer without a cast [enabled by default]
ASN1_STRING_length(ip))) {
^
In file included from /usr/include/openssl/x509.h:581:0,
from /home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_ssl.h:6,
from /home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_ssl.c:31:
/usr/include/openssl/x509_vfy.h:604:5: note: expected ‘const unsigned char *’ but argument is of type ‘int’
int X509_VERIFY_PARAM_set1_ip(X509_VERIFY_PARAM *param,
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_ssl.c: In function ‘newPySSLSocket’:
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_ssl.c:831:9: error: implicit declaration of function ‘BIO_up_ref’ [-Werror=implicit-function-declaration]
BIO_up_ref(inbio->bio);
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_ssl.c: In function ‘_create_tuple_for_X509_NAME’:
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_ssl.c:1086:13: error: implicit declaration of function ‘X509_NAME_ENTRY_set’ [-Werror=implicit-function-declaration]
if (rdn_level != X509_NAME_ENTRY_set(entry)) {
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_ssl.c: In function ‘_get_peer_alt_names’:
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_ssl.c:1251:49: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast]
v = PyUnicode_FromStringAndSize((char *)ASN1_STRING_get0_data(as),
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_ssl.c: In function ‘_decode_certificate’:
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_ssl.c:1611:5: error: implicit declaration of function ‘X509_get0_notBefore’ [-Werror=implicit-function-declaration]
notBefore = X509_get0_notBefore(certificate);
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_ssl.c:1611:15: warning: assignment makes pointer from integer without a cast [enabled by default]
notBefore = X509_get0_notBefore(certificate);
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_ssl.c:1628:5: error: implicit declaration of function ‘X509_get0_notAfter’ [-Werror=implicit-function-declaration]
notAfter = X509_get0_notAfter(certificate);
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_ssl.c:1628:14: warning: assignment makes pointer from integer without a cast [enabled by default]
notAfter = X509_get0_notAfter(certificate);
^
In file included from /home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_ssl.c:1724:0:
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_ssl/cert.c: In function ‘newCertificate’:
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_ssl/cert.c:30:9: error: implicit declaration of function ‘X509_up_ref’ [-Werror=implicit-function-declaration]
X509_up_ref(cert);
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_ssl.c: In function ‘_ssl__SSLSocket_get_verified_chain_impl’:
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_ssl.c:1828:29: warning: initialization makes pointer from integer without a cast [enabled by default]
STACK_OF(X509) *chain = SSL_get0_verified_chain(self->ssl);
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_ssl.c: In function ‘cipher_to_dict’:
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_ssl.c:1946:5: error: implicit declaration of function ‘SSL_CIPHER_is_aead’ [-Werror=implicit-function-declaration]
aead = SSL_CIPHER_is_aead(cipher);
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_ssl.c:1947:5: error: implicit declaration of function ‘SSL_CIPHER_get_cipher_nid’ [-Werror=implicit-function-declaration]
nid = SSL_CIPHER_get_cipher_nid(cipher);
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_ssl.c:1949:5: error: implicit declaration of function ‘SSL_CIPHER_get_digest_nid’ [-Werror=implicit-function-declaration]
nid = SSL_CIPHER_get_digest_nid(cipher);
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_ssl.c:1951:5: error: implicit declaration of function ‘SSL_CIPHER_get_kx_nid’ [-Werror=implicit-function-declaration]
nid = SSL_CIPHER_get_kx_nid(cipher);
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_ssl.c:1953:5: error: implicit declaration of function ‘SSL_CIPHER_get_auth_nid’ [-Werror=implicit-function-declaration]
nid = SSL_CIPHER_get_auth_nid(cipher);
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_ssl.c: In function ‘_ssl__SSLSocket_compression_impl’:
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_ssl.c:2078:5: error: implicit declaration of function ‘COMP_get_type’ [-Werror=implicit-function-declaration]
if (comp_method == NULL || COMP_get_type(comp_method) == NID_undef)
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_ssl.c: In function ‘_ssl__SSLSocket_write_impl’:
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_ssl.c:2335:9: error: implicit declaration of function ‘SSL_write_ex’ [-Werror=implicit-function-declaration]
retval = SSL_write_ex(self->ssl, b->buf, (int)b->len, &count);
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_ssl.c: In function ‘_ssl__SSLSocket_read_impl’:
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_ssl.c:2487:9: error: implicit declaration of function ‘SSL_read_ex’ [-Werror=implicit-function-declaration]
retval = SSL_read_ex(self->ssl, mem, len, &count);
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_ssl.c: In function ‘_ssl__SSLContext_impl’:
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_ssl.c:3013:9: error: implicit declaration of function ‘TLS_method’ [-Werror=implicit-function-declaration]
method = TLS_method();
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_ssl.c:3013:16: warning: assignment makes pointer from integer without a cast [enabled by default]
method = TLS_method();
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_ssl.c:3016:9: error: implicit declaration of function ‘TLS_client_method’ [-Werror=implicit-function-declaration]
method = TLS_client_method();
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_ssl.c:3016:16: warning: assignment makes pointer from integer without a cast [enabled by default]
method = TLS_client_method();
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_ssl.c:3019:9: error: implicit declaration of function ‘TLS_server_method’ [-Werror=implicit-function-declaration]
method = TLS_server_method();
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_ssl.c:3019:16: warning: assignment makes pointer from integer without a cast [enabled by default]
method = TLS_server_method();
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_ssl.c:3122:9: error: implicit declaration of function ‘SSL_CTX_set_min_proto_version’ [-Werror=implicit-function-declaration]
result = SSL_CTX_set_min_proto_version(ctx, PY_SSL_MIN_PROTOCOL);
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_ssl.c: In function ‘set_min_max_proto_version’:
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_ssl.c:3482:9: error: implicit declaration of function ‘SSL_CTX_set_max_proto_version’ [-Werror=implicit-function-declaration]
result = SSL_CTX_set_max_proto_version(self->ctx, v);
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_ssl.c: In function ‘get_minimum_version’:
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_ssl.c:3495:37: error: ‘SSL_CTRL_GET_MIN_PROTO_VERSION’ undeclared (first use in this function)
int v = SSL_CTX_ctrl(self->ctx, SSL_CTRL_GET_MIN_PROTO_VERSION, 0, NULL);
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_ssl.c:3495:37: note: each undeclared identifier is reported only once for each function it appears in
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_ssl.c: In function ‘get_maximum_version’:
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_ssl.c:3511:37: error: ‘SSL_CTRL_GET_MAX_PROTO_VERSION’ undeclared (first use in this function)
int v = SSL_CTX_ctrl(self->ctx, SSL_CTRL_GET_MAX_PROTO_VERSION, 0, NULL);
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_ssl.c: In function ‘get_security_level’:
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_ssl.c:3560:5: error: implicit declaration of function ‘SSL_CTX_get_security_level’ [-Werror=implicit-function-declaration]
return PyLong_FromLong(SSL_CTX_get_security_level(self->ctx));
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_ssl.c: In function ‘_ssl__SSLContext_load_cert_chain_impl’:
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_ssl.c:3801:5: error: implicit declaration of function ‘SSL_CTX_get_default_passwd_cb’ [-Werror=implicit-function-declaration]
pem_password_cb *orig_passwd_cb = SSL_CTX_get_default_passwd_cb(self->ctx);
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_ssl.c:3801:39: warning: initialization makes pointer from integer without a cast [enabled by default]
pem_password_cb *orig_passwd_cb = SSL_CTX_get_default_passwd_cb(self->ctx);
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_ssl.c:3802:5: error: implicit declaration of function ‘SSL_CTX_get_default_passwd_cb_userdata’ [-Werror=implicit-function-declaration]
void *orig_passwd_userdata = SSL_CTX_get_default_passwd_cb_userdata(self->ctx);
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_ssl.c:3802:34: warning: initialization makes pointer from integer without a cast [enabled by default]
void *orig_passwd_userdata = SSL_CTX_get_default_passwd_cb_userdata(self->ctx);
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_ssl.c: In function ‘_add_ca_certs’:
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_ssl.c:3935:37: warning: passing argument 3 of ‘PEM_read_bio_X509’ makes pointer from integer without a cast [enabled by default]
);
^
In file included from /home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_ssl.c:59:0:
/usr/include/openssl/pem.h:451:1: note: expected ‘int (*)(char *, int, int, void *)’ but argument is of type ‘int’
DECLARE_PEM_rw(X509, X509)
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_ssl.c:3935:37: warning: passing argument 4 of ‘PEM_read_bio_X509’ makes pointer from integer without a cast [enabled by default]
);
^
In file included from /home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_ssl.c:59:0:
/usr/include/openssl/pem.h:451:1: note: expected ‘void *’ but argument is of type ‘int’
DECLARE_PEM_rw(X509, X509)
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_ssl.c: In function ‘_ssl__SSLContext_cert_store_stats_impl’:
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_ssl.c:4495:5: error: implicit declaration of function ‘X509_STORE_get0_objects’ [-Werror=implicit-function-declaration]
objs = X509_STORE_get0_objects(store);
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_ssl.c:4495:10: warning: assignment makes pointer from integer without a cast [enabled by default]
objs = X509_STORE_get0_objects(store);
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_ssl.c:4498:9: error: implicit declaration of function ‘X509_OBJECT_get_type’ [-Werror=implicit-function-declaration]
switch (X509_OBJECT_get_type(obj)) {
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_ssl.c:4501:17: error: implicit declaration of function ‘X509_OBJECT_get0_X509’ [-Werror=implicit-function-declaration]
if (X509_check_ca(X509_OBJECT_get0_X509(obj))) {
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_ssl.c:4501:17: warning: passing argument 1 of ‘X509_check_ca’ makes pointer from integer without a cast [enabled by default]
In file included from /home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_ssl.c:58:0:
/usr/include/openssl/x509v3.h:697:5: note: expected ‘struct X509 *’ but argument is of type ‘int’
int X509_check_ca(X509 *x);
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_ssl.c: In function ‘_ssl__SSLContext_get_ca_certs_impl’:
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_ssl.c:4546:10: warning: assignment makes pointer from integer without a cast [enabled by default]
objs = X509_STORE_get0_objects(store);
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_ssl.c:4557:14: warning: assignment makes pointer from integer without a cast [enabled by default]
cert = X509_OBJECT_get0_X509(obj);
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_ssl.c: In function ‘PySSLSession_get_ticket_lifetime_hint’:
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_ssl.c:4984:5: error: implicit declaration of function ‘SSL_SESSION_get_ticket_lifetime_hint’ [-Werror=implicit-function-declaration]
unsigned long hint = SSL_SESSION_get_ticket_lifetime_hint(self->session);
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_ssl.c: In function ‘PySSLSession_get_has_ticket’:
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_ssl.c:5006:5: error: implicit declaration of function ‘SSL_SESSION_has_ticket’ [-Werror=implicit-function-declaration]
if (SSL_SESSION_has_ticket(self->session)) {
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_ssl.c: In function ‘sslmodule_init_versioninfo’:
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_ssl.c:6059:5: error: implicit declaration of function ‘OpenSSL_version_num’ [-Werror=implicit-function-declaration]
libver = OpenSSL_version_num();
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_ssl.c:6069:5: error: implicit declaration of function ‘OpenSSL_version’ [-Werror=implicit-function-declaration]
r = PyUnicode_FromString(OpenSSL_version(OPENSSL_VERSION));
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_ssl.c:6069:46: error: ‘OPENSSL_VERSION’ undeclared (first use in this function)
r = PyUnicode_FromString(OpenSSL_version(OPENSSL_VERSION));
^
cc1: some warnings being treated as errors
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_hashopenssl.c: In function ‘py_digest_name’:
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_hashopenssl.c:158:10: error: ‘NID_sha3_224’ undeclared (first use in this function)
case NID_sha3_224:
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_hashopenssl.c:158:10: note: each undeclared identifier is reported only once for each function it appears in
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_hashopenssl.c:161:10: error: ‘NID_sha3_256’ undeclared (first use in this function)
case NID_sha3_256:
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_hashopenssl.c:164:10: error: ‘NID_sha3_384’ undeclared (first use in this function)
case NID_sha3_384:
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_hashopenssl.c:167:10: error: ‘NID_sha3_512’ undeclared (first use in this function)
case NID_sha3_512:
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_hashopenssl.c:172:10: error: ‘NID_shake128’ undeclared (first use in this function)
case NID_shake128:
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_hashopenssl.c:175:10: error: ‘NID_shake256’ undeclared (first use in this function)
case NID_shake256:
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_hashopenssl.c:180:10: error: ‘NID_blake2s256’ undeclared (first use in this function)
case NID_blake2s256:
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_hashopenssl.c:183:10: error: ‘NID_blake2b512’ undeclared (first use in this function)
case NID_blake2b512:
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_hashopenssl.c: In function ‘py_digest_by_name’:
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_hashopenssl.c:222:13: error: implicit declaration of function ‘EVP_sha3_224’ [-Werror=implicit-function-declaration]
digest = EVP_sha3_224();
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_hashopenssl.c:222:20: warning: assignment makes pointer from integer without a cast [enabled by default]
digest = EVP_sha3_224();
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_hashopenssl.c:225:13: error: implicit declaration of function ‘EVP_sha3_256’ [-Werror=implicit-function-declaration]
digest = EVP_sha3_256();
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_hashopenssl.c:225:20: warning: assignment makes pointer from integer without a cast [enabled by default]
digest = EVP_sha3_256();
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_hashopenssl.c:228:13: error: implicit declaration of function ‘EVP_sha3_384’ [-Werror=implicit-function-declaration]
digest = EVP_sha3_384();
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_hashopenssl.c:228:20: warning: assignment makes pointer from integer without a cast [enabled by default]
digest = EVP_sha3_384();
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_hashopenssl.c:231:13: error: implicit declaration of function ‘EVP_sha3_512’ [-Werror=implicit-function-declaration]
digest = EVP_sha3_512();
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_hashopenssl.c:231:20: warning: assignment makes pointer from integer without a cast [enabled by default]
digest = EVP_sha3_512();
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_hashopenssl.c:236:13: error: implicit declaration of function ‘EVP_shake128’ [-Werror=implicit-function-declaration]
digest = EVP_shake128();
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_hashopenssl.c:236:20: warning: assignment makes pointer from integer without a cast [enabled by default]
digest = EVP_shake128();
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_hashopenssl.c:239:13: error: implicit declaration of function ‘EVP_shake256’ [-Werror=implicit-function-declaration]
digest = EVP_shake256();
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_hashopenssl.c:239:20: warning: assignment makes pointer from integer without a cast [enabled by default]
digest = EVP_shake256();
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_hashopenssl.c:244:13: error: implicit declaration of function ‘EVP_blake2s256’ [-Werror=implicit-function-declaration]
digest = EVP_blake2s256();
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_hashopenssl.c:244:20: warning: assignment makes pointer from integer without a cast [enabled by default]
digest = EVP_blake2s256();
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_hashopenssl.c:247:13: error: implicit declaration of function ‘EVP_blake2b512’ [-Werror=implicit-function-declaration]
digest = EVP_blake2b512();
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_hashopenssl.c:247:20: warning: assignment makes pointer from integer without a cast [enabled by default]
digest = EVP_blake2b512();
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_hashopenssl.c: In function ‘newEVPobject’:
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_hashopenssl.c:312:5: error: implicit declaration of function ‘EVP_MD_CTX_new’ [-Werror=implicit-function-declaration]
retval->ctx = EVP_MD_CTX_new();
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_hashopenssl.c:312:17: warning: assignment makes pointer from integer without a cast [enabled by default]
retval->ctx = EVP_MD_CTX_new();
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_hashopenssl.c: In function ‘EVP_dealloc’:
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_hashopenssl.c:350:5: error: implicit declaration of function ‘EVP_MD_CTX_free’ [-Werror=implicit-function-declaration]
EVP_MD_CTX_free(self->ctx);
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_hashopenssl.c: In function ‘EVP_digest_impl’:
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_hashopenssl.c:404:14: warning: assignment makes pointer from integer without a cast [enabled by default]
temp_ctx = EVP_MD_CTX_new();
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_hashopenssl.c: In function ‘EVP_hexdigest_impl’:
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_hashopenssl.c:438:14: warning: assignment makes pointer from integer without a cast [enabled by default]
temp_ctx = EVP_MD_CTX_new();
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_hashopenssl.c: In function ‘EVPXOF_digest_impl’:
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_hashopenssl.c:616:14: warning: assignment makes pointer from integer without a cast [enabled by default]
temp_ctx = EVP_MD_CTX_new();
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_hashopenssl.c:628:5: error: implicit declaration of function ‘EVP_DigestFinalXOF’ [-Werror=implicit-function-declaration]
if (!EVP_DigestFinalXOF(temp_ctx,
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_hashopenssl.c: In function ‘EVPXOF_hexdigest_impl’:
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_hashopenssl.c:663:14: warning: assignment makes pointer from integer without a cast [enabled by default]
temp_ctx = EVP_MD_CTX_new();
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_hashopenssl.c: In function ‘EVPnew’:
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_hashopenssl.c:761:33: error: ‘EVP_MD_FLAG_XOF’ undeclared (first use in this function)
if ((EVP_MD_flags(digest) & EVP_MD_FLAG_XOF) == EVP_MD_FLAG_XOF) {
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_hashopenssl.c: In function ‘_hashlib_openssl_sha3_224_impl’:
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_hashopenssl.c:1009:5: warning: passing argument 3 of ‘EVP_fast_new’ makes pointer from integer without a cast [enabled by default]
return EVP_fast_new(module, data_obj, EVP_sha3_224(), usedforsecurity);
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_hashopenssl.c:852:1: note: expected ‘const struct EVP_MD *’ but argument is of type ‘int’
EVP_fast_new(PyObject *module, PyObject *data_obj, const EVP_MD *digest,
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_hashopenssl.c: In function ‘_hashlib_openssl_sha3_256_impl’:
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_hashopenssl.c:1028:5: warning: passing argument 3 of ‘EVP_fast_new’ makes pointer from integer without a cast [enabled by default]
return EVP_fast_new(module, data_obj, EVP_sha3_256(), usedforsecurity);
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_hashopenssl.c:852:1: note: expected ‘const struct EVP_MD *’ but argument is of type ‘int’
EVP_fast_new(PyObject *module, PyObject *data_obj, const EVP_MD *digest,
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_hashopenssl.c: In function ‘_hashlib_openssl_sha3_384_impl’:
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_hashopenssl.c:1047:5: warning: passing argument 3 of ‘EVP_fast_new’ makes pointer from integer without a cast [enabled by default]
return EVP_fast_new(module, data_obj, EVP_sha3_384(), usedforsecurity);
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_hashopenssl.c:852:1: note: expected ‘const struct EVP_MD *’ but argument is of type ‘int’
EVP_fast_new(PyObject *module, PyObject *data_obj, const EVP_MD *digest,
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_hashopenssl.c: In function ‘_hashlib_openssl_sha3_512_impl’:
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_hashopenssl.c:1066:5: warning: passing argument 3 of ‘EVP_fast_new’ makes pointer from integer without a cast [enabled by default]
return EVP_fast_new(module, data_obj, EVP_sha3_512(), usedforsecurity);
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_hashopenssl.c:852:1: note: expected ‘const struct EVP_MD *’ but argument is of type ‘int’
EVP_fast_new(PyObject *module, PyObject *data_obj, const EVP_MD *digest,
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_hashopenssl.c: In function ‘_hashlib_openssl_shake_128_impl’:
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_hashopenssl.c:1087:5: warning: passing argument 3 of ‘EVP_fast_new’ makes pointer from integer without a cast [enabled by default]
return EVP_fast_new(module, data_obj, EVP_shake128(), usedforsecurity);
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_hashopenssl.c:852:1: note: expected ‘const struct EVP_MD *’ but argument is of type ‘int’
EVP_fast_new(PyObject *module, PyObject *data_obj, const EVP_MD *digest,
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_hashopenssl.c: In function ‘_hashlib_openssl_shake_256_impl’:
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_hashopenssl.c:1106:5: warning: passing argument 3 of ‘EVP_fast_new’ makes pointer from integer without a cast [enabled by default]
return EVP_fast_new(module, data_obj, EVP_shake256(), usedforsecurity);
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_hashopenssl.c:852:1: note: expected ‘const struct EVP_MD *’ but argument is of type ‘int’
EVP_fast_new(PyObject *module, PyObject *data_obj, const EVP_MD *digest,
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_hashopenssl.c: In function ‘_hashlib_scrypt_impl’:
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_hashopenssl.c:1298:5: error: implicit declaration of function ‘EVP_PBE_scrypt’ [-Werror=implicit-function-declaration]
retval = EVP_PBE_scrypt(NULL, 0, NULL, 0, n, r, p, maxmem, NULL, 0);
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_hashopenssl.c: In function ‘_hashlib_hmac_new_impl’:
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_hashopenssl.c:1428:5: error: implicit declaration of function ‘HMAC_CTX_new’ [-Werror=implicit-function-declaration]
ctx = HMAC_CTX_new();
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_hashopenssl.c:1428:9: warning: assignment makes pointer from integer without a cast [enabled by default]
ctx = HMAC_CTX_new();
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_hashopenssl.c:1461:5: error: implicit declaration of function ‘HMAC_CTX_free’ [-Werror=implicit-function-declaration]
if (ctx) HMAC_CTX_free(ctx);
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_hashopenssl.c: In function ‘_hmac_digest_size’:
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_hashopenssl.c:1480:5: error: implicit declaration of function ‘HMAC_CTX_get_md’ [-Werror=implicit-function-declaration]
unsigned int digest_size = EVP_MD_size(HMAC_CTX_get_md(self->ctx));
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_hashopenssl.c:1480:5: warning: passing argument 1 of ‘EVP_MD_size’ makes pointer from integer without a cast [enabled by default]
In file included from /home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_hashopenssl.c:28:0:
/usr/include/openssl/evp.h:523:5: note: expected ‘const struct EVP_MD *’ but argument is of type ‘int’
int EVP_MD_size(const EVP_MD *md);
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_hashopenssl.c: In function ‘_hashlib_HMAC_copy_impl’:
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_hashopenssl.c:1529:21: warning: initialization makes pointer from integer without a cast [enabled by default]
HMAC_CTX *ctx = HMAC_CTX_new();
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_hashopenssl.c: In function ‘_hmac_repr’:
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_hashopenssl.c:1564:5: warning: passing argument 1 of ‘py_digest_name’ makes pointer from integer without a cast [enabled by default]
PyObject *digest_name = py_digest_name(HMAC_CTX_get_md(self->ctx));
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_hashopenssl.c:122:1: note: expected ‘const struct EVP_MD *’ but argument is of type ‘int’
py_digest_name(const EVP_MD *md)
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_hashopenssl.c: In function ‘_hmac_digest’:
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_hashopenssl.c:1595:26: warning: initialization makes pointer from integer without a cast [enabled by default]
HMAC_CTX *temp_ctx = HMAC_CTX_new();
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_hashopenssl.c: In function ‘_hashlib_hmac_get_block_size’:
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_hashopenssl.c:1672:24: warning: initialization makes pointer from integer without a cast [enabled by default]
const EVP_MD *md = HMAC_CTX_get_md(self->ctx);
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_hashopenssl.c: In function ‘_hashlib_hmac_get_name’:
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_hashopenssl.c:1682:5: warning: passing argument 1 of ‘py_digest_name’ makes pointer from integer without a cast [enabled by default]
PyObject *digest_name = py_digest_name(HMAC_CTX_get_md(self->ctx));
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_hashopenssl.c:122:1: note: expected ‘const struct EVP_MD *’ but argument is of type ‘int’
py_digest_name(const EVP_MD *md)
^
cc1: some warnings being treated as errors
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_hashopenssl.c: In function ‘py_digest_name’:
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_hashopenssl.c:158:10: error: ‘NID_sha3_224’ undeclared (first use in this function)
case NID_sha3_224:
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_hashopenssl.c:158:10: note: each undeclared identifier is reported only once for each function it appears in
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_hashopenssl.c:161:10: error: ‘NID_sha3_256’ undeclared (first use in this function)
case NID_sha3_256:
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_hashopenssl.c:164:10: error: ‘NID_sha3_384’ undeclared (first use in this function)
case NID_sha3_384:
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_hashopenssl.c:167:10: error: ‘NID_sha3_512’ undeclared (first use in this function)
case NID_sha3_512:
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_hashopenssl.c:172:10: error: ‘NID_shake128’ undeclared (first use in this function)
case NID_shake128:
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_hashopenssl.c:175:10: error: ‘NID_shake256’ undeclared (first use in this function)
case NID_shake256:
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_hashopenssl.c:180:10: error: ‘NID_blake2s256’ undeclared (first use in this function)
case NID_blake2s256:
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_hashopenssl.c:183:10: error: ‘NID_blake2b512’ undeclared (first use in this function)
case NID_blake2b512:
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_hashopenssl.c: In function ‘py_digest_by_name’:
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_hashopenssl.c:222:13: error: implicit declaration of function ‘EVP_sha3_224’ [-Werror=implicit-function-declaration]
digest = EVP_sha3_224();
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_hashopenssl.c:222:20: warning: assignment makes pointer from integer without a cast [enabled by default]
digest = EVP_sha3_224();
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_hashopenssl.c:225:13: error: implicit declaration of function ‘EVP_sha3_256’ [-Werror=implicit-function-declaration]
digest = EVP_sha3_256();
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_hashopenssl.c:225:20: warning: assignment makes pointer from integer without a cast [enabled by default]
digest = EVP_sha3_256();
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_hashopenssl.c:228:13: error: implicit declaration of function ‘EVP_sha3_384’ [-Werror=implicit-function-declaration]
digest = EVP_sha3_384();
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_hashopenssl.c:228:20: warning: assignment makes pointer from integer without a cast [enabled by default]
digest = EVP_sha3_384();
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_hashopenssl.c:231:13: error: implicit declaration of function ‘EVP_sha3_512’ [-Werror=implicit-function-declaration]
digest = EVP_sha3_512();
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_hashopenssl.c:231:20: warning: assignment makes pointer from integer without a cast [enabled by default]
digest = EVP_sha3_512();
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_hashopenssl.c:236:13: error: implicit declaration of function ‘EVP_shake128’ [-Werror=implicit-function-declaration]
digest = EVP_shake128();
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_hashopenssl.c:236:20: warning: assignment makes pointer from integer without a cast [enabled by default]
digest = EVP_shake128();
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_hashopenssl.c:239:13: error: implicit declaration of function ‘EVP_shake256’ [-Werror=implicit-function-declaration]
digest = EVP_shake256();
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_hashopenssl.c:239:20: warning: assignment makes pointer from integer without a cast [enabled by default]
digest = EVP_shake256();
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_hashopenssl.c:244:13: error: implicit declaration of function ‘EVP_blake2s256’ [-Werror=implicit-function-declaration]
digest = EVP_blake2s256();
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_hashopenssl.c:244:20: warning: assignment makes pointer from integer without a cast [enabled by default]
digest = EVP_blake2s256();
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_hashopenssl.c:247:13: error: implicit declaration of function ‘EVP_blake2b512’ [-Werror=implicit-function-declaration]
digest = EVP_blake2b512();
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_hashopenssl.c:247:20: warning: assignment makes pointer from integer without a cast [enabled by default]
digest = EVP_blake2b512();
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_hashopenssl.c: In function ‘newEVPobject’:
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_hashopenssl.c:312:5: error: implicit declaration of function ‘EVP_MD_CTX_new’ [-Werror=implicit-function-declaration]
retval->ctx = EVP_MD_CTX_new();
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_hashopenssl.c:312:17: warning: assignment makes pointer from integer without a cast [enabled by default]
retval->ctx = EVP_MD_CTX_new();
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_hashopenssl.c: In function ‘EVP_dealloc’:
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_hashopenssl.c:350:5: error: implicit declaration of function ‘EVP_MD_CTX_free’ [-Werror=implicit-function-declaration]
EVP_MD_CTX_free(self->ctx);
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_hashopenssl.c: In function ‘EVP_digest_impl’:
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_hashopenssl.c:404:14: warning: assignment makes pointer from integer without a cast [enabled by default]
temp_ctx = EVP_MD_CTX_new();
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_hashopenssl.c: In function ‘EVP_hexdigest_impl’:
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_hashopenssl.c:438:14: warning: assignment makes pointer from integer without a cast [enabled by default]
temp_ctx = EVP_MD_CTX_new();
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_hashopenssl.c: In function ‘EVPXOF_digest_impl’:
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_hashopenssl.c:616:14: warning: assignment makes pointer from integer without a cast [enabled by default]
temp_ctx = EVP_MD_CTX_new();
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_hashopenssl.c:628:5: error: implicit declaration of function ‘EVP_DigestFinalXOF’ [-Werror=implicit-function-declaration]
if (!EVP_DigestFinalXOF(temp_ctx,
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_hashopenssl.c: In function ‘EVPXOF_hexdigest_impl’:
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_hashopenssl.c:663:14: warning: assignment makes pointer from integer without a cast [enabled by default]
temp_ctx = EVP_MD_CTX_new();
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_hashopenssl.c: In function ‘EVPnew’:
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_hashopenssl.c:761:33: error: ‘EVP_MD_FLAG_XOF’ undeclared (first use in this function)
if ((EVP_MD_flags(digest) & EVP_MD_FLAG_XOF) == EVP_MD_FLAG_XOF) {
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_hashopenssl.c: In function ‘_hashlib_openssl_sha3_224_impl’:
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_hashopenssl.c:1009:5: warning: passing argument 3 of ‘EVP_fast_new’ makes pointer from integer without a cast [enabled by default]
return EVP_fast_new(module, data_obj, EVP_sha3_224(), usedforsecurity);
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_hashopenssl.c:852:1: note: expected ‘const struct EVP_MD *’ but argument is of type ‘int’
EVP_fast_new(PyObject *module, PyObject *data_obj, const EVP_MD *digest,
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_hashopenssl.c: In function ‘_hashlib_openssl_sha3_256_impl’:
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_hashopenssl.c:1028:5: warning: passing argument 3 of ‘EVP_fast_new’ makes pointer from integer without a cast [enabled by default]
return EVP_fast_new(module, data_obj, EVP_sha3_256(), usedforsecurity);
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_hashopenssl.c:852:1: note: expected ‘const struct EVP_MD *’ but argument is of type ‘int’
EVP_fast_new(PyObject *module, PyObject *data_obj, const EVP_MD *digest,
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_hashopenssl.c: In function ‘_hashlib_openssl_sha3_384_impl’:
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_hashopenssl.c:1047:5: warning: passing argument 3 of ‘EVP_fast_new’ makes pointer from integer without a cast [enabled by default]
return EVP_fast_new(module, data_obj, EVP_sha3_384(), usedforsecurity);
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_hashopenssl.c:852:1: note: expected ‘const struct EVP_MD *’ but argument is of type ‘int’
EVP_fast_new(PyObject *module, PyObject *data_obj, const EVP_MD *digest,
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_hashopenssl.c: In function ‘_hashlib_openssl_sha3_512_impl’:
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_hashopenssl.c:1066:5: warning: passing argument 3 of ‘EVP_fast_new’ makes pointer from integer without a cast [enabled by default]
return EVP_fast_new(module, data_obj, EVP_sha3_512(), usedforsecurity);
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_hashopenssl.c:852:1: note: expected ‘const struct EVP_MD *’ but argument is of type ‘int’
EVP_fast_new(PyObject *module, PyObject *data_obj, const EVP_MD *digest,
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_hashopenssl.c: In function ‘_hashlib_openssl_shake_128_impl’:
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_hashopenssl.c:1087:5: warning: passing argument 3 of ‘EVP_fast_new’ makes pointer from integer without a cast [enabled by default]
return EVP_fast_new(module, data_obj, EVP_shake128(), usedforsecurity);
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_hashopenssl.c:852:1: note: expected ‘const struct EVP_MD *’ but argument is of type ‘int’
EVP_fast_new(PyObject *module, PyObject *data_obj, const EVP_MD *digest,
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_hashopenssl.c: In function ‘_hashlib_openssl_shake_256_impl’:
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_hashopenssl.c:1106:5: warning: passing argument 3 of ‘EVP_fast_new’ makes pointer from integer without a cast [enabled by default]
return EVP_fast_new(module, data_obj, EVP_shake256(), usedforsecurity);
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_hashopenssl.c:852:1: note: expected ‘const struct EVP_MD *’ but argument is of type ‘int’
EVP_fast_new(PyObject *module, PyObject *data_obj, const EVP_MD *digest,
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_hashopenssl.c: In function ‘_hashlib_scrypt_impl’:
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_hashopenssl.c:1298:5: error: implicit declaration of function ‘EVP_PBE_scrypt’ [-Werror=implicit-function-declaration]
retval = EVP_PBE_scrypt(NULL, 0, NULL, 0, n, r, p, maxmem, NULL, 0);
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_hashopenssl.c: In function ‘_hashlib_hmac_new_impl’:
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_hashopenssl.c:1428:5: error: implicit declaration of function ‘HMAC_CTX_new’ [-Werror=implicit-function-declaration]
ctx = HMAC_CTX_new();
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_hashopenssl.c:1428:9: warning: assignment makes pointer from integer without a cast [enabled by default]
ctx = HMAC_CTX_new();
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_hashopenssl.c:1461:5: error: implicit declaration of function ‘HMAC_CTX_free’ [-Werror=implicit-function-declaration]
if (ctx) HMAC_CTX_free(ctx);
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_hashopenssl.c: In function ‘_hmac_digest_size’:
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_hashopenssl.c:1480:5: error: implicit declaration of function ‘HMAC_CTX_get_md’ [-Werror=implicit-function-declaration]
unsigned int digest_size = EVP_MD_size(HMAC_CTX_get_md(self->ctx));
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_hashopenssl.c:1480:5: warning: passing argument 1 of ‘EVP_MD_size’ makes pointer from integer without a cast [enabled by default]
In file included from /home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_hashopenssl.c:28:0:
/usr/include/openssl/evp.h:523:5: note: expected ‘const struct EVP_MD *’ but argument is of type ‘int’
int EVP_MD_size(const EVP_MD *md);
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_hashopenssl.c: In function ‘_hashlib_HMAC_copy_impl’:
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_hashopenssl.c:1529:21: warning: initialization makes pointer from integer without a cast [enabled by default]
HMAC_CTX *ctx = HMAC_CTX_new();
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_hashopenssl.c: In function ‘_hmac_repr’:
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_hashopenssl.c:1564:5: warning: passing argument 1 of ‘py_digest_name’ makes pointer from integer without a cast [enabled by default]
PyObject *digest_name = py_digest_name(HMAC_CTX_get_md(self->ctx));
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_hashopenssl.c:122:1: note: expected ‘const struct EVP_MD *’ but argument is of type ‘int’
py_digest_name(const EVP_MD *md)
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_hashopenssl.c: In function ‘_hmac_digest’:
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_hashopenssl.c:1595:26: warning: initialization makes pointer from integer without a cast [enabled by default]
HMAC_CTX *temp_ctx = HMAC_CTX_new();
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_hashopenssl.c: In function ‘_hashlib_hmac_get_block_size’:
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_hashopenssl.c:1672:24: warning: initialization makes pointer from integer without a cast [enabled by default]
const EVP_MD *md = HMAC_CTX_get_md(self->ctx);
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_hashopenssl.c: In function ‘_hashlib_hmac_get_name’:
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_hashopenssl.c:1682:5: warning: passing argument 1 of ‘py_digest_name’ makes pointer from integer without a cast [enabled by default]
PyObject *digest_name = py_digest_name(HMAC_CTX_get_md(self->ctx));
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_hashopenssl.c:122:1: note: expected ‘const struct EVP_MD *’ but argument is of type ‘int’
py_digest_name(const EVP_MD *md)
^
cc1: some warnings being treated as errors
In file included from /home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_ssl.c:390:0:
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_ssl/debughelpers.c: In function ‘_PySSLContext_set_keylog_filename’:
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_ssl/debughelpers.c:180:5: error: implicit declaration of function ‘SSL_CTX_set_keylog_callback’ [-Werror=implicit-function-declaration]
SSL_CTX_set_keylog_callback(self->ctx, NULL);
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_ssl.c: In function ‘_ssl_configure_hostname’:
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_ssl.c:765:13: error: implicit declaration of function ‘ASN1_STRING_get0_data’ [-Werror=implicit-function-declaration]
if (!X509_VERIFY_PARAM_set1_ip(param, ASN1_STRING_get0_data(ip),
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_ssl.c:766:44: warning: passing argument 2 of ‘X509_VERIFY_PARAM_set1_ip’ makes pointer from integer without a cast [enabled by default]
ASN1_STRING_length(ip))) {
^
In file included from /usr/include/openssl/x509.h:581:0,
from /home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_ssl.h:6,
from /home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_ssl.c:31:
/usr/include/openssl/x509_vfy.h:604:5: note: expected ‘const unsigned char *’ but argument is of type ‘int’
int X509_VERIFY_PARAM_set1_ip(X509_VERIFY_PARAM *param,
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_ssl.c: In function ‘newPySSLSocket’:
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_ssl.c:831:9: error: implicit declaration of function ‘BIO_up_ref’ [-Werror=implicit-function-declaration]
BIO_up_ref(inbio->bio);
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_ssl.c: In function ‘_create_tuple_for_X509_NAME’:
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_ssl.c:1086:13: error: implicit declaration of function ‘X509_NAME_ENTRY_set’ [-Werror=implicit-function-declaration]
if (rdn_level != X509_NAME_ENTRY_set(entry)) {
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_ssl.c: In function ‘_get_peer_alt_names’:
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_ssl.c:1251:49: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast]
v = PyUnicode_FromStringAndSize((char *)ASN1_STRING_get0_data(as),
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_ssl.c: In function ‘_decode_certificate’:
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_ssl.c:1611:5: error: implicit declaration of function ‘X509_get0_notBefore’ [-Werror=implicit-function-declaration]
notBefore = X509_get0_notBefore(certificate);
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_ssl.c:1611:15: warning: assignment makes pointer from integer without a cast [enabled by default]
notBefore = X509_get0_notBefore(certificate);
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_ssl.c:1628:5: error: implicit declaration of function ‘X509_get0_notAfter’ [-Werror=implicit-function-declaration]
notAfter = X509_get0_notAfter(certificate);
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_ssl.c:1628:14: warning: assignment makes pointer from integer without a cast [enabled by default]
notAfter = X509_get0_notAfter(certificate);
^
In file included from /home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_ssl.c:1724:0:
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_ssl/cert.c: In function ‘newCertificate’:
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_ssl/cert.c:30:9: error: implicit declaration of function ‘X509_up_ref’ [-Werror=implicit-function-declaration]
X509_up_ref(cert);
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_ssl.c: In function ‘_ssl__SSLSocket_get_verified_chain_impl’:
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_ssl.c:1828:29: warning: initialization makes pointer from integer without a cast [enabled by default]
STACK_OF(X509) *chain = SSL_get0_verified_chain(self->ssl);
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_ssl.c: In function ‘cipher_to_dict’:
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_ssl.c:1946:5: error: implicit declaration of function ‘SSL_CIPHER_is_aead’ [-Werror=implicit-function-declaration]
aead = SSL_CIPHER_is_aead(cipher);
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_ssl.c:1947:5: error: implicit declaration of function ‘SSL_CIPHER_get_cipher_nid’ [-Werror=implicit-function-declaration]
nid = SSL_CIPHER_get_cipher_nid(cipher);
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_ssl.c:1949:5: error: implicit declaration of function ‘SSL_CIPHER_get_digest_nid’ [-Werror=implicit-function-declaration]
nid = SSL_CIPHER_get_digest_nid(cipher);
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_ssl.c:1951:5: error: implicit declaration of function ‘SSL_CIPHER_get_kx_nid’ [-Werror=implicit-function-declaration]
nid = SSL_CIPHER_get_kx_nid(cipher);
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_ssl.c:1953:5: error: implicit declaration of function ‘SSL_CIPHER_get_auth_nid’ [-Werror=implicit-function-declaration]
nid = SSL_CIPHER_get_auth_nid(cipher);
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_ssl.c: In function ‘_ssl__SSLSocket_compression_impl’:
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_ssl.c:2078:5: error: implicit declaration of function ‘COMP_get_type’ [-Werror=implicit-function-declaration]
if (comp_method == NULL || COMP_get_type(comp_method) == NID_undef)
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_ssl.c: In function ‘_ssl__SSLSocket_write_impl’:
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_ssl.c:2335:9: error: implicit declaration of function ‘SSL_write_ex’ [-Werror=implicit-function-declaration]
retval = SSL_write_ex(self->ssl, b->buf, (int)b->len, &count);
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_ssl.c: In function ‘_ssl__SSLSocket_read_impl’:
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_ssl.c:2487:9: error: implicit declaration of function ‘SSL_read_ex’ [-Werror=implicit-function-declaration]
retval = SSL_read_ex(self->ssl, mem, len, &count);
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_ssl.c: In function ‘_ssl__SSLContext_impl’:
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_ssl.c:3013:9: error: implicit declaration of function ‘TLS_method’ [-Werror=implicit-function-declaration]
method = TLS_method();
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_ssl.c:3013:16: warning: assignment makes pointer from integer without a cast [enabled by default]
method = TLS_method();
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_ssl.c:3016:9: error: implicit declaration of function ‘TLS_client_method’ [-Werror=implicit-function-declaration]
method = TLS_client_method();
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_ssl.c:3016:16: warning: assignment makes pointer from integer without a cast [enabled by default]
method = TLS_client_method();
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_ssl.c:3019:9: error: implicit declaration of function ‘TLS_server_method’ [-Werror=implicit-function-declaration]
method = TLS_server_method();
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_ssl.c:3019:16: warning: assignment makes pointer from integer without a cast [enabled by default]
method = TLS_server_method();
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_ssl.c:3122:9: error: implicit declaration of function ‘SSL_CTX_set_min_proto_version’ [-Werror=implicit-function-declaration]
result = SSL_CTX_set_min_proto_version(ctx, PY_SSL_MIN_PROTOCOL);
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_ssl.c: In function ‘set_min_max_proto_version’:
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_ssl.c:3482:9: error: implicit declaration of function ‘SSL_CTX_set_max_proto_version’ [-Werror=implicit-function-declaration]
result = SSL_CTX_set_max_proto_version(self->ctx, v);
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_ssl.c: In function ‘get_minimum_version’:
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_ssl.c:3495:37: error: ‘SSL_CTRL_GET_MIN_PROTO_VERSION’ undeclared (first use in this function)
int v = SSL_CTX_ctrl(self->ctx, SSL_CTRL_GET_MIN_PROTO_VERSION, 0, NULL);
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_ssl.c:3495:37: note: each undeclared identifier is reported only once for each function it appears in
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_ssl.c: In function ‘get_maximum_version’:
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_ssl.c:3511:37: error: ‘SSL_CTRL_GET_MAX_PROTO_VERSION’ undeclared (first use in this function)
int v = SSL_CTX_ctrl(self->ctx, SSL_CTRL_GET_MAX_PROTO_VERSION, 0, NULL);
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_ssl.c: In function ‘get_security_level’:
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_ssl.c:3560:5: error: implicit declaration of function ‘SSL_CTX_get_security_level’ [-Werror=implicit-function-declaration]
return PyLong_FromLong(SSL_CTX_get_security_level(self->ctx));
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_ssl.c: In function ‘_ssl__SSLContext_load_cert_chain_impl’:
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_ssl.c:3801:5: error: implicit declaration of function ‘SSL_CTX_get_default_passwd_cb’ [-Werror=implicit-function-declaration]
pem_password_cb *orig_passwd_cb = SSL_CTX_get_default_passwd_cb(self->ctx);
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_ssl.c:3801:39: warning: initialization makes pointer from integer without a cast [enabled by default]
pem_password_cb *orig_passwd_cb = SSL_CTX_get_default_passwd_cb(self->ctx);
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_ssl.c:3802:5: error: implicit declaration of function ‘SSL_CTX_get_default_passwd_cb_userdata’ [-Werror=implicit-function-declaration]
void *orig_passwd_userdata = SSL_CTX_get_default_passwd_cb_userdata(self->ctx);
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_ssl.c:3802:34: warning: initialization makes pointer from integer without a cast [enabled by default]
void *orig_passwd_userdata = SSL_CTX_get_default_passwd_cb_userdata(self->ctx);
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_ssl.c: In function ‘_add_ca_certs’:
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_ssl.c:3935:37: warning: passing argument 3 of ‘PEM_read_bio_X509’ makes pointer from integer without a cast [enabled by default]
);
^
In file included from /home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_ssl.c:59:0:
/usr/include/openssl/pem.h:451:1: note: expected ‘int (*)(char *, int, int, void *)’ but argument is of type ‘int’
DECLARE_PEM_rw(X509, X509)
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_ssl.c:3935:37: warning: passing argument 4 of ‘PEM_read_bio_X509’ makes pointer from integer without a cast [enabled by default]
);
^
In file included from /home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_ssl.c:59:0:
/usr/include/openssl/pem.h:451:1: note: expected ‘void *’ but argument is of type ‘int’
DECLARE_PEM_rw(X509, X509)
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_ssl.c: In function ‘_ssl__SSLContext_cert_store_stats_impl’:
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_ssl.c:4495:5: error: implicit declaration of function ‘X509_STORE_get0_objects’ [-Werror=implicit-function-declaration]
objs = X509_STORE_get0_objects(store);
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_ssl.c:4495:10: warning: assignment makes pointer from integer without a cast [enabled by default]
objs = X509_STORE_get0_objects(store);
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_ssl.c:4498:9: error: implicit declaration of function ‘X509_OBJECT_get_type’ [-Werror=implicit-function-declaration]
switch (X509_OBJECT_get_type(obj)) {
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_ssl.c:4501:17: error: implicit declaration of function ‘X509_OBJECT_get0_X509’ [-Werror=implicit-function-declaration]
if (X509_check_ca(X509_OBJECT_get0_X509(obj))) {
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_ssl.c:4501:17: warning: passing argument 1 of ‘X509_check_ca’ makes pointer from integer without a cast [enabled by default]
In file included from /home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_ssl.c:58:0:
/usr/include/openssl/x509v3.h:697:5: note: expected ‘struct X509 *’ but argument is of type ‘int’
int X509_check_ca(X509 *x);
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_ssl.c: In function ‘_ssl__SSLContext_get_ca_certs_impl’:
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_ssl.c:4546:10: warning: assignment makes pointer from integer without a cast [enabled by default]
objs = X509_STORE_get0_objects(store);
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_ssl.c:4557:14: warning: assignment makes pointer from integer without a cast [enabled by default]
cert = X509_OBJECT_get0_X509(obj);
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_ssl.c: In function ‘PySSLSession_get_ticket_lifetime_hint’:
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_ssl.c:4984:5: error: implicit declaration of function ‘SSL_SESSION_get_ticket_lifetime_hint’ [-Werror=implicit-function-declaration]
unsigned long hint = SSL_SESSION_get_ticket_lifetime_hint(self->session);
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_ssl.c: In function ‘PySSLSession_get_has_ticket’:
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_ssl.c:5006:5: error: implicit declaration of function ‘SSL_SESSION_has_ticket’ [-Werror=implicit-function-declaration]
if (SSL_SESSION_has_ticket(self->session)) {
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_ssl.c: In function ‘sslmodule_init_versioninfo’:
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_ssl.c:6059:5: error: implicit declaration of function ‘OpenSSL_version_num’ [-Werror=implicit-function-declaration]
libver = OpenSSL_version_num();
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_ssl.c:6069:5: error: implicit declaration of function ‘OpenSSL_version’ [-Werror=implicit-function-declaration]
r = PyUnicode_FromString(OpenSSL_version(OPENSSL_VERSION));
^
/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Modules/_ssl.c:6069:46: error: ‘OPENSSL_VERSION’ undeclared (first use in this function)
r = PyUnicode_FromString(OpenSSL_version(OPENSSL_VERSION));
^
cc1: some warnings being treated as errors
test_zipfile64 skipped -- test requires loads of disk-space bytes and a long time to run
test_winreg skipped -- No module named 'winreg'
test_tk skipped -- Tk unavailable due to TclError: no display name and no $DISPLAY environment variab [...]
test_tix skipped -- Tk unavailable due to TclError: no display name and no $DISPLAY environment variab [...]
test_winsound skipped -- No module named 'winsound'
test_kqueue skipped -- test works only on BSD
test_smtpnet skipped -- No module named '_ssl'
test_badargs (__main__.GeneralTest) ... ok
test_bound_methods (__main__.GeneralTest) ... ok
test_clear (__main__.GeneralTest) ... ok
test_exit (__main__.GeneralTest) ... ok
test_order (__main__.GeneralTest) ... ok
test_raise (__main__.GeneralTest) ... ok
test_raise_unnormalized (__main__.GeneralTest) ... ok
test_stress (__main__.GeneralTest) ... ok
test_unregister (__main__.GeneralTest) ... ok
----------------------------------------------------------------------
Ran 9 tests in 0.002s
OK
test_winconsoleio skipped -- test only relevant on win32
test_ssl skipped -- No module named '_ssl'
test_flock (__main__.FNTLEINTRTest) ... ok
test_lockf (__main__.FNTLEINTRTest) ... ok
test_read (__main__.OSEINTRTest) ... ok
test_wait (__main__.OSEINTRTest) ... ok
test_wait3 (__main__.OSEINTRTest) ... ok
test_wait4 (__main__.OSEINTRTest) ... ok
test_waitpid (__main__.OSEINTRTest) ... ok
test_write (__main__.OSEINTRTest) ... ok
test_devpoll (__main__.SelectEINTRTest) ... skipped 'need select.devpoll'
test_epoll (__main__.SelectEINTRTest) ... ok
test_kqueue (__main__.SelectEINTRTest) ... skipped 'need select.kqueue'
test_poll (__main__.SelectEINTRTest) ... ok
test_select (__main__.SelectEINTRTest) ... ok
test_sigtimedwait (__main__.SignalEINTRTest) ... ok
test_sigwaitinfo (__main__.SignalEINTRTest) ... ok
test_accept (__main__.SocketEINTRTest) ... ok
test_open (__main__.SocketEINTRTest) ... ok
test_os_open (__main__.SocketEINTRTest) ... ok
test_recv (__main__.SocketEINTRTest) ... ok
test_recvmsg (__main__.SocketEINTRTest) ... ok
test_send (__main__.SocketEINTRTest) ... ok
test_sendall (__main__.SocketEINTRTest) ... ok
test_sendmsg (__main__.SocketEINTRTest) ... ok
test_sleep (__main__.TimeEINTRTest) ... ok
----------------------------------------------------------------------
Ran 24 tests in 6.533s
OK (skipped=2)
test_startfile skipped -- object <module 'os' from '/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Lib/os.py'> has no attribute 'startfile'
test_ttk_guionly skipped -- Tk unavailable due to TclError: no display name and no $DISPLAY environment variab [...]
test_ioctl skipped -- Unable to open /dev/tty
test_msilib skipped -- No module named '_msi'
test_ossaudiodev skipped -- [Errno 2] No such file or directory: '/dev/dsp'
test_devpoll skipped -- test works only on Solaris OS family
test_gdb skipped -- test_gdb is not reliable on PGO builds
Timeout (0:15:00)!
Thread 0x000003ffb3077700 (most recent call first):
File "/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Lib/selectors.py", line 469 in select
File "/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Lib/asyncio/base_events.py", line 1845 in _run_once
File "/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Lib/asyncio/base_events.py", line 595 in run_forever
File "/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Lib/asyncio/base_events.py", line 628 in run_until_complete
File "/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Lib/test/test_asyncio/test_subprocess.py", line 442 in test_cancel_make_subprocess_transport_exec
File "/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Lib/unittest/case.py", line 549 in _callTestMethod
File "/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Lib/unittest/case.py", line 592 in run
File "/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Lib/unittest/case.py", line 652 in __call__
File "/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Lib/unittest/suite.py", line 122 in run
File "/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Lib/unittest/suite.py", line 84 in __call__
File "/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Lib/unittest/suite.py", line 122 in run
File "/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Lib/unittest/suite.py", line 84 in __call__
File "/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Lib/unittest/suite.py", line 122 in run
File "/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Lib/unittest/suite.py", line 84 in __call__
File "/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Lib/unittest/suite.py", line 122 in run
File "/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Lib/unittest/suite.py", line 84 in __call__
File "/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Lib/unittest/suite.py", line 122 in run
File "/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Lib/unittest/suite.py", line 84 in __call__
File "/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Lib/unittest/runner.py", line 176 in run
File "/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Lib/test/support/__init__.py", line 960 in _run_suite
File "/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Lib/test/support/__init__.py", line 1083 in run_unittest
File "/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Lib/test/libregrtest/runtest.py", line 210 in _test_module
File "/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Lib/test/libregrtest/runtest.py", line 246 in _runtest_inner2
File "/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Lib/test/libregrtest/runtest.py", line 282 in _runtest_inner
File "/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Lib/test/libregrtest/runtest.py", line 141 in _runtest
File "/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Lib/test/libregrtest/runtest.py", line 194 in runtest
File "/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Lib/test/libregrtest/runtest_mp.py", line 81 in run_tests_worker
File "/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Lib/test/libregrtest/main.py", line 661 in _main
File "/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Lib/test/libregrtest/main.py", line 641 in main
File "/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Lib/test/libregrtest/main.py", line 719 in main
File "/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Lib/test/regrtest.py", line 43 in _main
File "/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Lib/test/regrtest.py", line 47 in <module>
File "/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Lib/runpy.py", line 86 in _run_code
File "/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Lib/runpy.py", line 196 in _run_module_as_main
Timeout (0:15:00)!
Thread 0x000003ffa6177700 (most recent call first):
File "/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Lib/selectors.py", line 469 in select
File "/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Lib/asyncio/base_events.py", line 1845 in _run_once
File "/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Lib/asyncio/base_events.py", line 595 in run_forever
File "/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Lib/asyncio/base_events.py", line 628 in run_until_complete
File "/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Lib/test/test_asyncio/test_subprocess.py", line 442 in test_cancel_make_subprocess_transport_exec
File "/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Lib/unittest/case.py", line 549 in _callTestMethod
File "/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Lib/unittest/case.py", line 592 in run
File "/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Lib/unittest/case.py", line 652 in __call__
File "/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Lib/unittest/suite.py", line 122 in run
File "/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Lib/unittest/suite.py", line 84 in __call__
File "/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Lib/unittest/suite.py", line 122 in run
File "/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Lib/unittest/suite.py", line 84 in __call__
File "/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Lib/unittest/suite.py", line 122 in run
File "/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Lib/unittest/suite.py", line 84 in __call__
File "/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Lib/unittest/suite.py", line 122 in run
File "/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Lib/unittest/suite.py", line 84 in __call__
File "/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Lib/unittest/suite.py", line 122 in run
File "/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Lib/unittest/suite.py", line 84 in __call__
File "/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Lib/unittest/runner.py", line 176 in run
File "/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Lib/test/support/__init__.py", line 960 in _run_suite
File "/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Lib/test/support/__init__.py", line 1083 in run_unittest
File "/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Lib/test/libregrtest/runtest.py", line 210 in _test_module
File "/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Lib/test/libregrtest/runtest.py", line 246 in _runtest_inner2
File "/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Lib/test/libregrtest/runtest.py", line 282 in _runtest_inner
File "/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Lib/test/libregrtest/runtest.py", line 154 in _runtest
File "/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Lib/test/libregrtest/runtest.py", line 194 in runtest
File "/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Lib/test/libregrtest/main.py", line 321 in rerun_failed_tests
File "/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Lib/test/libregrtest/main.py", line 698 in _main
File "/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Lib/test/libregrtest/main.py", line 641 in main
File "/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Lib/test/libregrtest/main.py", line 719 in main
File "/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Lib/test/__main__.py", line 2 in <module>
File "/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Lib/runpy.py", line 86 in _run_code
File "/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/Lib/runpy.py", line 196 in _run_module_as_main
make: *** [buildbottest] Error 1
Cannot open file '/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto-pgo/build/test-results.xml' for upload
Test report
===========
Failed tests:
- test_asyncio
Sincerely,
-The Buildbot
1
0
The Buildbot has detected a new failure on builder PPC64LE Fedora Stable Refleaks 3.8 while building Python.
Full details are available at:
https://buildbot.python.org/all/#builders/450/builds/42
Buildbot URL: https://buildbot.python.org/all/
Worker for this Build: cstratak-fedora-stable-ppc64le
Build Reason: <unknown>
Blamelist:
BUILD FAILED: failed test (failure)
Summary of the results of the build (if available):
===================================================
Captured traceback
==================
Traceback (most recent call last):
File "/home/buildbot/buildarea/3.8.cstratak-fedora-stable-ppc64le.refleak/build/Lib/multiprocessing/util.py", line 300, in _run_finalizers
finalizer()
File "/home/buildbot/buildarea/3.8.cstratak-fedora-stable-ppc64le.refleak/build/Lib/multiprocessing/util.py", line 224, in __call__
res = self._callback(*self._args, **self._kwargs)
File "/home/buildbot/buildarea/3.8.cstratak-fedora-stable-ppc64le.refleak/build/Lib/multiprocessing/synchronize.py", line 87, in _cleanup
sem_unlink(name)
FileNotFoundError: [Errno 2] No such file or directory
Traceback (most recent call last):
File "/home/buildbot/buildarea/3.8.cstratak-fedora-stable-ppc64le.refleak/build/Lib/multiprocessing/util.py", line 300, in _run_finalizers
finalizer()
File "/home/buildbot/buildarea/3.8.cstratak-fedora-stable-ppc64le.refleak/build/Lib/multiprocessing/util.py", line 224, in __call__
res = self._callback(*self._args, **self._kwargs)
File "/home/buildbot/buildarea/3.8.cstratak-fedora-stable-ppc64le.refleak/build/Lib/multiprocessing/synchronize.py", line 87, in _cleanup
sem_unlink(name)
FileNotFoundError: [Errno 2] No such file or directory
Traceback (most recent call last):
File "/home/buildbot/buildarea/3.8.cstratak-fedora-stable-ppc64le.refleak/build/Lib/multiprocessing/util.py", line 300, in _run_finalizers
finalizer()
File "/home/buildbot/buildarea/3.8.cstratak-fedora-stable-ppc64le.refleak/build/Lib/multiprocessing/util.py", line 224, in __call__
res = self._callback(*self._args, **self._kwargs)
File "/home/buildbot/buildarea/3.8.cstratak-fedora-stable-ppc64le.refleak/build/Lib/multiprocessing/synchronize.py", line 87, in _cleanup
sem_unlink(name)
FileNotFoundError: [Errno 2] No such file or directory
Traceback (most recent call last):
File "/home/buildbot/buildarea/3.8.cstratak-fedora-stable-ppc64le.refleak/build/Lib/multiprocessing/util.py", line 300, in _run_finalizers
finalizer()
File "/home/buildbot/buildarea/3.8.cstratak-fedora-stable-ppc64le.refleak/build/Lib/multiprocessing/util.py", line 224, in __call__
res = self._callback(*self._args, **self._kwargs)
File "/home/buildbot/buildarea/3.8.cstratak-fedora-stable-ppc64le.refleak/build/Lib/multiprocessing/synchronize.py", line 87, in _cleanup
sem_unlink(name)
FileNotFoundError: [Errno 2] No such file or directory
Traceback (most recent call last):
File "/home/buildbot/buildarea/3.8.cstratak-fedora-stable-ppc64le.refleak/build/Lib/multiprocessing/util.py", line 300, in _run_finalizers
finalizer()
File "/home/buildbot/buildarea/3.8.cstratak-fedora-stable-ppc64le.refleak/build/Lib/multiprocessing/util.py", line 224, in __call__
res = self._callback(*self._args, **self._kwargs)
File "/home/buildbot/buildarea/3.8.cstratak-fedora-stable-ppc64le.refleak/build/Lib/multiprocessing/synchronize.py", line 87, in _cleanup
sem_unlink(name)
FileNotFoundError: [Errno 2] No such file or directory
Traceback (most recent call last):
File "/home/buildbot/buildarea/3.8.cstratak-fedora-stable-ppc64le.refleak/build/Lib/multiprocessing/util.py", line 300, in _run_finalizers
finalizer()
File "/home/buildbot/buildarea/3.8.cstratak-fedora-stable-ppc64le.refleak/build/Lib/multiprocessing/util.py", line 224, in __call__
res = self._callback(*self._args, **self._kwargs)
File "/home/buildbot/buildarea/3.8.cstratak-fedora-stable-ppc64le.refleak/build/Lib/multiprocessing/synchronize.py", line 87, in _cleanup
sem_unlink(name)
FileNotFoundError: [Errno 2] No such file or directory
./home/buildbot/buildarea/3.8.cstratak-fedora-stable-ppc64le.refleak/build/Lib/multiprocessing/resource_tracker.py:216: UserWarning: resource_tracker: There appear to be 6 leaked semaphore objects to clean up at shutdown
warnings.warn('resource_tracker: There appear to be %d '
Traceback (most recent call last):
File "/home/buildbot/buildarea/3.8.cstratak-fedora-stable-ppc64le.refleak/build/Lib/multiprocessing/util.py", line 300, in _run_finalizers
finalizer()
File "/home/buildbot/buildarea/3.8.cstratak-fedora-stable-ppc64le.refleak/build/Lib/multiprocessing/util.py", line 224, in __call__
res = self._callback(*self._args, **self._kwargs)
File "/home/buildbot/buildarea/3.8.cstratak-fedora-stable-ppc64le.refleak/build/Lib/multiprocessing/synchronize.py", line 87, in _cleanup
sem_unlink(name)
FileNotFoundError: [Errno 2] No such file or directory
Traceback (most recent call last):
File "/home/buildbot/buildarea/3.8.cstratak-fedora-stable-ppc64le.refleak/build/Lib/multiprocessing/util.py", line 300, in _run_finalizers
finalizer()
File "/home/buildbot/buildarea/3.8.cstratak-fedora-stable-ppc64le.refleak/build/Lib/multiprocessing/util.py", line 224, in __call__
res = self._callback(*self._args, **self._kwargs)
File "/home/buildbot/buildarea/3.8.cstratak-fedora-stable-ppc64le.refleak/build/Lib/multiprocessing/synchronize.py", line 87, in _cleanup
sem_unlink(name)
FileNotFoundError: [Errno 2] No such file or directory
Traceback (most recent call last):
File "/home/buildbot/buildarea/3.8.cstratak-fedora-stable-ppc64le.refleak/build/Lib/multiprocessing/util.py", line 300, in _run_finalizers
finalizer()
File "/home/buildbot/buildarea/3.8.cstratak-fedora-stable-ppc64le.refleak/build/Lib/multiprocessing/util.py", line 224, in __call__
res = self._callback(*self._args, **self._kwargs)
File "/home/buildbot/buildarea/3.8.cstratak-fedora-stable-ppc64le.refleak/build/Lib/multiprocessing/synchronize.py", line 87, in _cleanup
sem_unlink(name)
FileNotFoundError: [Errno 2] No such file or directory
Traceback (most recent call last):
File "/home/buildbot/buildarea/3.8.cstratak-fedora-stable-ppc64le.refleak/build/Lib/multiprocessing/util.py", line 300, in _run_finalizers
finalizer()
File "/home/buildbot/buildarea/3.8.cstratak-fedora-stable-ppc64le.refleak/build/Lib/multiprocessing/util.py", line 224, in __call__
res = self._callback(*self._args, **self._kwargs)
File "/home/buildbot/buildarea/3.8.cstratak-fedora-stable-ppc64le.refleak/build/Lib/multiprocessing/synchronize.py", line 87, in _cleanup
sem_unlink(name)
FileNotFoundError: [Errno 2] No such file or directory
Traceback (most recent call last):
File "/home/buildbot/buildarea/3.8.cstratak-fedora-stable-ppc64le.refleak/build/Lib/multiprocessing/util.py", line 300, in _run_finalizers
finalizer()
File "/home/buildbot/buildarea/3.8.cstratak-fedora-stable-ppc64le.refleak/build/Lib/multiprocessing/util.py", line 224, in __call__
res = self._callback(*self._args, **self._kwargs)
File "/home/buildbot/buildarea/3.8.cstratak-fedora-stable-ppc64le.refleak/build/Lib/multiprocessing/synchronize.py", line 87, in _cleanup
sem_unlink(name)
FileNotFoundError: [Errno 2] No such file or directory
Traceback (most recent call last):
File "/home/buildbot/buildarea/3.8.cstratak-fedora-stable-ppc64le.refleak/build/Lib/multiprocessing/util.py", line 300, in _run_finalizers
finalizer()
File "/home/buildbot/buildarea/3.8.cstratak-fedora-stable-ppc64le.refleak/build/Lib/multiprocessing/util.py", line 224, in __call__
res = self._callback(*self._args, **self._kwargs)
File "/home/buildbot/buildarea/3.8.cstratak-fedora-stable-ppc64le.refleak/build/Lib/multiprocessing/synchronize.py", line 87, in _cleanup
sem_unlink(name)
FileNotFoundError: [Errno 2] No such file or directory
./home/buildbot/buildarea/3.8.cstratak-fedora-stable-ppc64le.refleak/build/Lib/multiprocessing/resource_tracker.py:216: UserWarning: resource_tracker: There appear to be 6 leaked semaphore objects to clean up at shutdown
warnings.warn('resource_tracker: There appear to be %d '
Traceback (most recent call last):
File "/home/buildbot/buildarea/3.8.cstratak-fedora-stable-ppc64le.refleak/build/Lib/multiprocessing/util.py", line 300, in _run_finalizers
finalizer()
File "/home/buildbot/buildarea/3.8.cstratak-fedora-stable-ppc64le.refleak/build/Lib/multiprocessing/util.py", line 224, in __call__
res = self._callback(*self._args, **self._kwargs)
File "/home/buildbot/buildarea/3.8.cstratak-fedora-stable-ppc64le.refleak/build/Lib/multiprocessing/synchronize.py", line 87, in _cleanup
sem_unlink(name)
FileNotFoundError: [Errno 2] No such file or directory
Traceback (most recent call last):
File "/home/buildbot/buildarea/3.8.cstratak-fedora-stable-ppc64le.refleak/build/Lib/multiprocessing/util.py", line 300, in _run_finalizers
finalizer()
File "/home/buildbot/buildarea/3.8.cstratak-fedora-stable-ppc64le.refleak/build/Lib/multiprocessing/util.py", line 224, in __call__
res = self._callback(*self._args, **self._kwargs)
File "/home/buildbot/buildarea/3.8.cstratak-fedora-stable-ppc64le.refleak/build/Lib/multiprocessing/synchronize.py", line 87, in _cleanup
sem_unlink(name)
FileNotFoundError: [Errno 2] No such file or directory
Traceback (most recent call last):
File "/home/buildbot/buildarea/3.8.cstratak-fedora-stable-ppc64le.refleak/build/Lib/multiprocessing/util.py", line 300, in _run_finalizers
finalizer()
File "/home/buildbot/buildarea/3.8.cstratak-fedora-stable-ppc64le.refleak/build/Lib/multiprocessing/util.py", line 224, in __call__
res = self._callback(*self._args, **self._kwargs)
File "/home/buildbot/buildarea/3.8.cstratak-fedora-stable-ppc64le.refleak/build/Lib/multiprocessing/synchronize.py", line 87, in _cleanup
sem_unlink(name)
FileNotFoundError: [Errno 2] No such file or directory
Traceback (most recent call last):
File "/home/buildbot/buildarea/3.8.cstratak-fedora-stable-ppc64le.refleak/build/Lib/multiprocessing/util.py", line 300, in _run_finalizers
finalizer()
File "/home/buildbot/buildarea/3.8.cstratak-fedora-stable-ppc64le.refleak/build/Lib/multiprocessing/util.py", line 224, in __call__
res = self._callback(*self._args, **self._kwargs)
File "/home/buildbot/buildarea/3.8.cstratak-fedora-stable-ppc64le.refleak/build/Lib/multiprocessing/synchronize.py", line 87, in _cleanup
sem_unlink(name)
FileNotFoundError: [Errno 2] No such file or directory
Traceback (most recent call last):
File "/home/buildbot/buildarea/3.8.cstratak-fedora-stable-ppc64le.refleak/build/Lib/multiprocessing/util.py", line 300, in _run_finalizers
finalizer()
File "/home/buildbot/buildarea/3.8.cstratak-fedora-stable-ppc64le.refleak/build/Lib/multiprocessing/util.py", line 224, in __call__
res = self._callback(*self._args, **self._kwargs)
File "/home/buildbot/buildarea/3.8.cstratak-fedora-stable-ppc64le.refleak/build/Lib/multiprocessing/synchronize.py", line 87, in _cleanup
sem_unlink(name)
FileNotFoundError: [Errno 2] No such file or directory
Traceback (most recent call last):
File "/home/buildbot/buildarea/3.8.cstratak-fedora-stable-ppc64le.refleak/build/Lib/multiprocessing/util.py", line 300, in _run_finalizers
finalizer()
File "/home/buildbot/buildarea/3.8.cstratak-fedora-stable-ppc64le.refleak/build/Lib/multiprocessing/util.py", line 224, in __call__
res = self._callback(*self._args, **self._kwargs)
File "/home/buildbot/buildarea/3.8.cstratak-fedora-stable-ppc64le.refleak/build/Lib/multiprocessing/synchronize.py", line 87, in _cleanup
sem_unlink(name)
FileNotFoundError: [Errno 2] No such file or directory
./home/buildbot/buildarea/3.8.cstratak-fedora-stable-ppc64le.refleak/build/Lib/multiprocessing/resource_tracker.py:216: UserWarning: resource_tracker: There appear to be 6 leaked semaphore objects to clean up at shutdown
warnings.warn('resource_tracker: There appear to be %d '
Traceback (most recent call last):
File "/home/buildbot/buildarea/3.8.cstratak-fedora-stable-ppc64le.refleak/build/Lib/multiprocessing/util.py", line 300, in _run_finalizers
finalizer()
File "/home/buildbot/buildarea/3.8.cstratak-fedora-stable-ppc64le.refleak/build/Lib/multiprocessing/util.py", line 224, in __call__
res = self._callback(*self._args, **self._kwargs)
File "/home/buildbot/buildarea/3.8.cstratak-fedora-stable-ppc64le.refleak/build/Lib/multiprocessing/synchronize.py", line 87, in _cleanup
sem_unlink(name)
FileNotFoundError: [Errno 2] No such file or directory
Traceback (most recent call last):
File "/home/buildbot/buildarea/3.8.cstratak-fedora-stable-ppc64le.refleak/build/Lib/multiprocessing/util.py", line 300, in _run_finalizers
finalizer()
File "/home/buildbot/buildarea/3.8.cstratak-fedora-stable-ppc64le.refleak/build/Lib/multiprocessing/util.py", line 224, in __call__
res = self._callback(*self._args, **self._kwargs)
File "/home/buildbot/buildarea/3.8.cstratak-fedora-stable-ppc64le.refleak/build/Lib/multiprocessing/synchronize.py", line 87, in _cleanup
sem_unlink(name)
FileNotFoundError: [Errno 2] No such file or directory
Traceback (most recent call last):
File "/home/buildbot/buildarea/3.8.cstratak-fedora-stable-ppc64le.refleak/build/Lib/multiprocessing/util.py", line 300, in _run_finalizers
finalizer()
File "/home/buildbot/buildarea/3.8.cstratak-fedora-stable-ppc64le.refleak/build/Lib/multiprocessing/util.py", line 224, in __call__
res = self._callback(*self._args, **self._kwargs)
File "/home/buildbot/buildarea/3.8.cstratak-fedora-stable-ppc64le.refleak/build/Lib/multiprocessing/synchronize.py", line 87, in _cleanup
sem_unlink(name)
FileNotFoundError: [Errno 2] No such file or directory
Traceback (most recent call last):
File "/home/buildbot/buildarea/3.8.cstratak-fedora-stable-ppc64le.refleak/build/Lib/multiprocessing/util.py", line 300, in _run_finalizers
finalizer()
File "/home/buildbot/buildarea/3.8.cstratak-fedora-stable-ppc64le.refleak/build/Lib/multiprocessing/util.py", line 224, in __call__
res = self._callback(*self._args, **self._kwargs)
File "/home/buildbot/buildarea/3.8.cstratak-fedora-stable-ppc64le.refleak/build/Lib/multiprocessing/synchronize.py", line 87, in _cleanup
sem_unlink(name)
FileNotFoundError: [Errno 2] No such file or directory
Traceback (most recent call last):
File "/home/buildbot/buildarea/3.8.cstratak-fedora-stable-ppc64le.refleak/build/Lib/multiprocessing/util.py", line 300, in _run_finalizers
finalizer()
File "/home/buildbot/buildarea/3.8.cstratak-fedora-stable-ppc64le.refleak/build/Lib/multiprocessing/util.py", line 224, in __call__
res = self._callback(*self._args, **self._kwargs)
File "/home/buildbot/buildarea/3.8.cstratak-fedora-stable-ppc64le.refleak/build/Lib/multiprocessing/synchronize.py", line 87, in _cleanup
sem_unlink(name)
FileNotFoundError: [Errno 2] No such file or directory
Traceback (most recent call last):
File "/home/buildbot/buildarea/3.8.cstratak-fedora-stable-ppc64le.refleak/build/Lib/multiprocessing/util.py", line 300, in _run_finalizers
finalizer()
File "/home/buildbot/buildarea/3.8.cstratak-fedora-stable-ppc64le.refleak/build/Lib/multiprocessing/util.py", line 224, in __call__
res = self._callback(*self._args, **self._kwargs)
File "/home/buildbot/buildarea/3.8.cstratak-fedora-stable-ppc64le.refleak/build/Lib/multiprocessing/synchronize.py", line 87, in _cleanup
sem_unlink(name)
FileNotFoundError: [Errno 2] No such file or directory
./home/buildbot/buildarea/3.8.cstratak-fedora-stable-ppc64le.refleak/build/Lib/multiprocessing/resource_tracker.py:216: UserWarning: resource_tracker: There appear to be 6 leaked semaphore objects to clean up at shutdown
warnings.warn('resource_tracker: There appear to be %d '
Traceback (most recent call last):
File "/home/buildbot/buildarea/3.8.cstratak-fedora-stable-ppc64le.refleak/build/Lib/multiprocessing/util.py", line 300, in _run_finalizers
finalizer()
File "/home/buildbot/buildarea/3.8.cstratak-fedora-stable-ppc64le.refleak/build/Lib/multiprocessing/util.py", line 224, in __call__
res = self._callback(*self._args, **self._kwargs)
File "/home/buildbot/buildarea/3.8.cstratak-fedora-stable-ppc64le.refleak/build/Lib/multiprocessing/synchronize.py", line 87, in _cleanup
sem_unlink(name)
FileNotFoundError: [Errno 2] No such file or directory
Traceback (most recent call last):
File "/home/buildbot/buildarea/3.8.cstratak-fedora-stable-ppc64le.refleak/build/Lib/multiprocessing/util.py", line 300, in _run_finalizers
finalizer()
File "/home/buildbot/buildarea/3.8.cstratak-fedora-stable-ppc64le.refleak/build/Lib/multiprocessing/util.py", line 224, in __call__
res = self._callback(*self._args, **self._kwargs)
File "/home/buildbot/buildarea/3.8.cstratak-fedora-stable-ppc64le.refleak/build/Lib/multiprocessing/synchronize.py", line 87, in _cleanup
sem_unlink(name)
FileNotFoundError: [Errno 2] No such file or directory
Traceback (most recent call last):
File "/home/buildbot/buildarea/3.8.cstratak-fedora-stable-ppc64le.refleak/build/Lib/multiprocessing/util.py", line 300, in _run_finalizers
finalizer()
File "/home/buildbot/buildarea/3.8.cstratak-fedora-stable-ppc64le.refleak/build/Lib/multiprocessing/util.py", line 224, in __call__
res = self._callback(*self._args, **self._kwargs)
File "/home/buildbot/buildarea/3.8.cstratak-fedora-stable-ppc64le.refleak/build/Lib/multiprocessing/synchronize.py", line 87, in _cleanup
sem_unlink(name)
FileNotFoundError: [Errno 2] No such file or directory
Traceback (most recent call last):
File "/home/buildbot/buildarea/3.8.cstratak-fedora-stable-ppc64le.refleak/build/Lib/multiprocessing/util.py", line 300, in _run_finalizers
finalizer()
File "/home/buildbot/buildarea/3.8.cstratak-fedora-stable-ppc64le.refleak/build/Lib/multiprocessing/util.py", line 224, in __call__
res = self._callback(*self._args, **self._kwargs)
File "/home/buildbot/buildarea/3.8.cstratak-fedora-stable-ppc64le.refleak/build/Lib/multiprocessing/synchronize.py", line 87, in _cleanup
sem_unlink(name)
FileNotFoundError: [Errno 2] No such file or directory
Traceback (most recent call last):
File "/home/buildbot/buildarea/3.8.cstratak-fedora-stable-ppc64le.refleak/build/Lib/multiprocessing/util.py", line 300, in _run_finalizers
finalizer()
File "/home/buildbot/buildarea/3.8.cstratak-fedora-stable-ppc64le.refleak/build/Lib/multiprocessing/util.py", line 224, in __call__
res = self._callback(*self._args, **self._kwargs)
File "/home/buildbot/buildarea/3.8.cstratak-fedora-stable-ppc64le.refleak/build/Lib/multiprocessing/synchronize.py", line 87, in _cleanup
sem_unlink(name)
FileNotFoundError: [Errno 2] No such file or directory
Traceback (most recent call last):
File "/home/buildbot/buildarea/3.8.cstratak-fedora-stable-ppc64le.refleak/build/Lib/multiprocessing/util.py", line 300, in _run_finalizers
finalizer()
File "/home/buildbot/buildarea/3.8.cstratak-fedora-stable-ppc64le.refleak/build/Lib/multiprocessing/util.py", line 224, in __call__
res = self._callback(*self._args, **self._kwargs)
File "/home/buildbot/buildarea/3.8.cstratak-fedora-stable-ppc64le.refleak/build/Lib/multiprocessing/synchronize.py", line 87, in _cleanup
sem_unlink(name)
FileNotFoundError: [Errno 2] No such file or directory
./home/buildbot/buildarea/3.8.cstratak-fedora-stable-ppc64le.refleak/build/Lib/multiprocessing/resource_tracker.py:216: UserWarning: resource_tracker: There appear to be 6 leaked semaphore objects to clean up at shutdown
warnings.warn('resource_tracker: There appear to be %d '
Traceback (most recent call last):
File "/home/buildbot/buildarea/3.8.cstratak-fedora-stable-ppc64le.refleak/build/Lib/multiprocessing/util.py", line 300, in _run_finalizers
finalizer()
File "/home/buildbot/buildarea/3.8.cstratak-fedora-stable-ppc64le.refleak/build/Lib/multiprocessing/util.py", line 224, in __call__
res = self._callback(*self._args, **self._kwargs)
File "/home/buildbot/buildarea/3.8.cstratak-fedora-stable-ppc64le.refleak/build/Lib/multiprocessing/synchronize.py", line 87, in _cleanup
sem_unlink(name)
FileNotFoundError: [Errno 2] No such file or directory
Traceback (most recent call last):
File "/home/buildbot/buildarea/3.8.cstratak-fedora-stable-ppc64le.refleak/build/Lib/multiprocessing/util.py", line 300, in _run_finalizers
finalizer()
File "/home/buildbot/buildarea/3.8.cstratak-fedora-stable-ppc64le.refleak/build/Lib/multiprocessing/util.py", line 224, in __call__
res = self._callback(*self._args, **self._kwargs)
File "/home/buildbot/buildarea/3.8.cstratak-fedora-stable-ppc64le.refleak/build/Lib/multiprocessing/synchronize.py", line 87, in _cleanup
sem_unlink(name)
FileNotFoundError: [Errno 2] No such file or directory
Traceback (most recent call last):
File "/home/buildbot/buildarea/3.8.cstratak-fedora-stable-ppc64le.refleak/build/Lib/multiprocessing/util.py", line 300, in _run_finalizers
finalizer()
File "/home/buildbot/buildarea/3.8.cstratak-fedora-stable-ppc64le.refleak/build/Lib/multiprocessing/util.py", line 224, in __call__
res = self._callback(*self._args, **self._kwargs)
File "/home/buildbot/buildarea/3.8.cstratak-fedora-stable-ppc64le.refleak/build/Lib/multiprocessing/synchronize.py", line 87, in _cleanup
sem_unlink(name)
FileNotFoundError: [Errno 2] No such file or directory
Traceback (most recent call last):
File "/home/buildbot/buildarea/3.8.cstratak-fedora-stable-ppc64le.refleak/build/Lib/multiprocessing/util.py", line 300, in _run_finalizers
finalizer()
File "/home/buildbot/buildarea/3.8.cstratak-fedora-stable-ppc64le.refleak/build/Lib/multiprocessing/util.py", line 224, in __call__
res = self._callback(*self._args, **self._kwargs)
File "/home/buildbot/buildarea/3.8.cstratak-fedora-stable-ppc64le.refleak/build/Lib/multiprocessing/synchronize.py", line 87, in _cleanup
sem_unlink(name)
FileNotFoundError: [Errno 2] No such file or directory
Traceback (most recent call last):
File "/home/buildbot/buildarea/3.8.cstratak-fedora-stable-ppc64le.refleak/build/Lib/multiprocessing/util.py", line 300, in _run_finalizers
finalizer()
File "/home/buildbot/buildarea/3.8.cstratak-fedora-stable-ppc64le.refleak/build/Lib/multiprocessing/util.py", line 224, in __call__
res = self._callback(*self._args, **self._kwargs)
File "/home/buildbot/buildarea/3.8.cstratak-fedora-stable-ppc64le.refleak/build/Lib/multiprocessing/synchronize.py", line 87, in _cleanup
sem_unlink(name)
FileNotFoundError: [Errno 2] No such file or directory
Traceback (most recent call last):
File "/home/buildbot/buildarea/3.8.cstratak-fedora-stable-ppc64le.refleak/build/Lib/multiprocessing/util.py", line 300, in _run_finalizers
finalizer()
File "/home/buildbot/buildarea/3.8.cstratak-fedora-stable-ppc64le.refleak/build/Lib/multiprocessing/util.py", line 224, in __call__
res = self._callback(*self._args, **self._kwargs)
File "/home/buildbot/buildarea/3.8.cstratak-fedora-stable-ppc64le.refleak/build/Lib/multiprocessing/synchronize.py", line 87, in _cleanup
sem_unlink(name)
FileNotFoundError: [Errno 2] No such file or directory
.
Test report
===========
Sincerely,
-The Buildbot
1
0
The Buildbot has detected a new failure on builder aarch64 Fedora Rawhide Clang Installed 3.10 while building python/cpython.
Full details are available at:
https://buildbot.python.org/all/#builders/695/builds/69
Buildbot URL: https://buildbot.python.org/all/
Worker for this Build: cstratak-fedora-rawhide-aarch64
Build Reason: <unknown>
Blamelist: Miss Islington (bot) <31488909+miss-islington(a)users.noreply.github.com>
BUILD FAILED: failed update (failure) Uninstalled (failure) clean (failure)
Summary of the results of the build (if available):
===================================================
Captured traceback
==================
fatal: unable to access 'https://github.com/python/cpython.git/': Failed to connect to github.com port 443: Connection timed out
chmod: cannot access 'target/': No such file or directory
make: *** No rule to make target 'distclean'. Stop.
Test report
===========
Sincerely,
-The BuildbotThe Buildbot has detected a new failure on builder aarch64 Fedora Stable Clang Installed 3.10 while building python/cpython.
Full details are available at:
https://buildbot.python.org/all/#builders/625/builds/76
Buildbot URL: https://buildbot.python.org/all/
Worker for this Build: cstratak-fedora-stable-aarch64
Build Reason: <unknown>
Blamelist: Miss Islington (bot) <31488909+miss-islington(a)users.noreply.github.com>
BUILD FAILED: failed update (failure) Uninstalled (failure) clean (failure)
Summary of the results of the build (if available):
===================================================
Captured traceback
==================
fatal: unable to access 'https://github.com/python/cpython.git/': Failed to connect to github.com port 443: Connection timed out
chmod: cannot access 'target/': No such file or directory
make: *** No rule to make target 'distclean'. Stop.
Test report
===========
Sincerely,
-The Buildbot
1
0
The Buildbot has detected a new failure on builder x86 Gentoo Installed with X 3.x while building python/cpython.
Full details are available at:
https://buildbot.python.org/all/#builders/464/builds/292
Buildbot URL: https://buildbot.python.org/all/
Worker for this Build: ware-gentoo-x86
Build Reason: <unknown>
Blamelist: Erlend Egeberg Aasland <erlend.aasland(a)innova.no>
BUILD FAILED: failed test (failure)
Summary of the results of the build (if available):
===================================================
== Tests result: FAILURE then FAILURE ==
412 tests OK.
1 test failed:
test_idle
14 tests skipped:
test_asdl_parser test_check_c_globals test_clinic test_ctypes
test_devpoll test_gdb test_ioctl test_kqueue test_msilib
test_startfile test_winconsoleio test_winreg test_winsound
test_zipfile64
1 re-run test:
test_idle
Total duration: 26 min 43 sec
Captured traceback
==================
Traceback (most recent call last):
File "/buildbot/buildarea/cpython/3.x.ware-gentoo-x86.installed/build/target/lib/python3.11/idlelib/idle_test/tkinter_testing_utils.py", line 54, in new_test_method
raise exception
File "/buildbot/buildarea/cpython/3.x.ware-gentoo-x86.installed/build/target/lib/python3.11/idlelib/idle_test/tkinter_testing_utils.py", line 38, in after_callback
next(test_generator)
File "/buildbot/buildarea/cpython/3.x.ware-gentoo-x86.installed/build/target/lib/python3.11/idlelib/idle_test/test_colorizer.py", line 573, in test_incremental_editing
eq(text.tag_nextrange('BUILTIN', '1.0'), ('1.0', '1.3'))
AssertionError: Tuples differ: () != ('1.0', '1.3')
Traceback (most recent call last):
File "/buildbot/buildarea/cpython/3.x.ware-gentoo-x86.installed/build/target/lib/python3.11/idlelib/idle_test/tkinter_testing_utils.py", line 54, in new_test_method
raise exception
File "/buildbot/buildarea/cpython/3.x.ware-gentoo-x86.installed/build/target/lib/python3.11/idlelib/idle_test/tkinter_testing_utils.py", line 38, in after_callback
next(test_generator)
File "/buildbot/buildarea/cpython/3.x.ware-gentoo-x86.installed/build/target/lib/python3.11/idlelib/idle_test/test_colorizer.py", line 569, in test_incremental_editing
eq(text.tag_nextrange('KEYWORD', '1.0'), ('1.0', '1.2'))
AssertionError: Tuples differ: () != ('1.0', '1.2')
Test report
===========
Failed tests:
- test_idle
Failed subtests:
- test_incremental_editing - idlelib.idle_test.test_colorizer.ColorDelegatorTest
Sincerely,
-The Buildbot
1
0
The Buildbot has detected a new failure on builder x86 Gentoo Non-Debug with X 3.x while building python/cpython.
Full details are available at:
https://buildbot.python.org/all/#builders/58/builds/287
Buildbot URL: https://buildbot.python.org/all/
Worker for this Build: ware-gentoo-x86
Build Reason: <unknown>
Blamelist: Hai Shi <shihai1992(a)gmail.com>, Jules Lasne <jules.lasne(a)gmail.com>
BUILD FAILED: failed test (failure)
Summary of the results of the build (if available):
===================================================
== Tests result: FAILURE then FAILURE ==
416 tests OK.
10 slowest tests:
- test_peg_generator: 12 min 47 sec
- test_concurrent_futures: 3 min 57 sec
- test_unparse: 2 min 59 sec
- test_asyncio: 2 min 52 sec
- test_multiprocessing_spawn: 2 min 49 sec
- test_lib2to3: 2 min 46 sec
- test_tokenize: 1 min 52 sec
- test_multiprocessing_forkserver: 1 min 26 sec
- test_pickle: 1 min 21 sec
- test_unicodedata: 1 min 13 sec
1 test failed:
test_idle
10 tests skipped:
test_ctypes test_devpoll test_ioctl test_kqueue test_msilib
test_startfile test_winconsoleio test_winreg test_winsound
test_zipfile64
1 re-run test:
test_idle
Total duration: 38 min 24 sec
Captured traceback
==================
Traceback (most recent call last):
File "/buildbot/buildarea/cpython/3.x.ware-gentoo-x86.nondebug/build/Lib/idlelib/idle_test/tkinter_testing_utils.py", line 54, in new_test_method
raise exception
File "/buildbot/buildarea/cpython/3.x.ware-gentoo-x86.nondebug/build/Lib/idlelib/idle_test/tkinter_testing_utils.py", line 38, in after_callback
next(test_generator)
File "/buildbot/buildarea/cpython/3.x.ware-gentoo-x86.nondebug/build/Lib/idlelib/idle_test/test_colorizer.py", line 569, in test_incremental_editing
eq(text.tag_nextrange('KEYWORD', '1.0'), ('1.0', '1.2'))
AssertionError: Tuples differ: () != ('1.0', '1.2')
Test report
===========
Failed tests:
- test_idle
Failed subtests:
- test_incremental_editing - idlelib.idle_test.test_colorizer.ColorDelegatorTest
Sincerely,
-The BuildbotThe Buildbot has detected a new failure on builder aarch64 Fedora Rawhide Clang Installed 3.x while building python/cpython.
Full details are available at:
https://buildbot.python.org/all/#builders/374/builds/220
Buildbot URL: https://buildbot.python.org/all/
Worker for this Build: cstratak-fedora-rawhide-aarch64
Build Reason: <unknown>
Blamelist: Hai Shi <shihai1992(a)gmail.com>, Jules Lasne <jules.lasne(a)gmail.com>
BUILD FAILED: failed update (failure) Uninstalled (failure) clean (failure)
Summary of the results of the build (if available):
===================================================
Captured traceback
==================
fatal: unable to access 'https://github.com/python/cpython.git/': Failed to connect to github.com port 443: Connection timed out
chmod: cannot access 'target/': No such file or directory
make: *** No rule to make target 'distclean'. Stop.
Test report
===========
Sincerely,
-The BuildbotThe Buildbot has detected a new failure on builder aarch64 Fedora Stable Clang Installed 3.x while building python/cpython.
Full details are available at:
https://buildbot.python.org/all/#builders/14/builds/252
Buildbot URL: https://buildbot.python.org/all/
Worker for this Build: cstratak-fedora-stable-aarch64
Build Reason: <unknown>
Blamelist: Hai Shi <shihai1992(a)gmail.com>, Jules Lasne <jules.lasne(a)gmail.com>
BUILD FAILED: failed update (failure) Uninstalled (failure) clean (failure)
Summary of the results of the build (if available):
===================================================
Captured traceback
==================
fatal: unable to access 'https://github.com/python/cpython.git/': Failed to connect to github.com port 443: Connection timed out
chmod: cannot access 'target/': No such file or directory
make: *** No rule to make target 'distclean'. Stop.
Test report
===========
Sincerely,
-The Buildbot
1
0
The Buildbot has detected a new failure on builder aarch64 Fedora Rawhide Refleaks 3.10 while building Python.
Full details are available at:
https://buildbot.python.org/all/#builders/683/builds/27
Buildbot URL: https://buildbot.python.org/all/
Worker for this Build: cstratak-fedora-rawhide-aarch64
Build Reason: <unknown>
Blamelist:
BUILD FAILED: failed test (failure)
Summary of the results of the build (if available):
===================================================
Captured traceback
==================
Traceback (most recent call last):
File "/home/buildbot/buildarea/3.10.cstratak-fedora-rawhide-aarch64.refleak/build/Lib/multiprocessing/util.py", line 300, in _run_finalizers
finalizer()
File "/home/buildbot/buildarea/3.10.cstratak-fedora-rawhide-aarch64.refleak/build/Lib/multiprocessing/util.py", line 224, in __call__
res = self._callback(*self._args, **self._kwargs)
File "/home/buildbot/buildarea/3.10.cstratak-fedora-rawhide-aarch64.refleak/build/Lib/multiprocessing/synchronize.py", line 87, in _cleanup
sem_unlink(name)
FileNotFoundError: [Errno 2] No such file or directory
Traceback (most recent call last):
File "/home/buildbot/buildarea/3.10.cstratak-fedora-rawhide-aarch64.refleak/build/Lib/multiprocessing/util.py", line 300, in _run_finalizers
finalizer()
File "/home/buildbot/buildarea/3.10.cstratak-fedora-rawhide-aarch64.refleak/build/Lib/multiprocessing/util.py", line 224, in __call__
res = self._callback(*self._args, **self._kwargs)
File "/home/buildbot/buildarea/3.10.cstratak-fedora-rawhide-aarch64.refleak/build/Lib/multiprocessing/synchronize.py", line 87, in _cleanup
sem_unlink(name)
FileNotFoundError: [Errno 2] No such file or directory
Traceback (most recent call last):
File "/home/buildbot/buildarea/3.10.cstratak-fedora-rawhide-aarch64.refleak/build/Lib/multiprocessing/util.py", line 300, in _run_finalizers
finalizer()
File "/home/buildbot/buildarea/3.10.cstratak-fedora-rawhide-aarch64.refleak/build/Lib/multiprocessing/util.py", line 224, in __call__
res = self._callback(*self._args, **self._kwargs)
File "/home/buildbot/buildarea/3.10.cstratak-fedora-rawhide-aarch64.refleak/build/Lib/multiprocessing/synchronize.py", line 87, in _cleanup
sem_unlink(name)
FileNotFoundError: [Errno 2] No such file or directory
Traceback (most recent call last):
File "/home/buildbot/buildarea/3.10.cstratak-fedora-rawhide-aarch64.refleak/build/Lib/multiprocessing/util.py", line 300, in _run_finalizers
finalizer()
File "/home/buildbot/buildarea/3.10.cstratak-fedora-rawhide-aarch64.refleak/build/Lib/multiprocessing/util.py", line 224, in __call__
res = self._callback(*self._args, **self._kwargs)
File "/home/buildbot/buildarea/3.10.cstratak-fedora-rawhide-aarch64.refleak/build/Lib/multiprocessing/synchronize.py", line 87, in _cleanup
sem_unlink(name)
FileNotFoundError: [Errno 2] No such file or directory
Traceback (most recent call last):
File "/home/buildbot/buildarea/3.10.cstratak-fedora-rawhide-aarch64.refleak/build/Lib/multiprocessing/util.py", line 300, in _run_finalizers
finalizer()
File "/home/buildbot/buildarea/3.10.cstratak-fedora-rawhide-aarch64.refleak/build/Lib/multiprocessing/util.py", line 224, in __call__
res = self._callback(*self._args, **self._kwargs)
File "/home/buildbot/buildarea/3.10.cstratak-fedora-rawhide-aarch64.refleak/build/Lib/multiprocessing/synchronize.py", line 87, in _cleanup
sem_unlink(name)
FileNotFoundError: [Errno 2] No such file or directory
Traceback (most recent call last):
File "/home/buildbot/buildarea/3.10.cstratak-fedora-rawhide-aarch64.refleak/build/Lib/multiprocessing/util.py", line 300, in _run_finalizers
finalizer()
File "/home/buildbot/buildarea/3.10.cstratak-fedora-rawhide-aarch64.refleak/build/Lib/multiprocessing/util.py", line 224, in __call__
res = self._callback(*self._args, **self._kwargs)
File "/home/buildbot/buildarea/3.10.cstratak-fedora-rawhide-aarch64.refleak/build/Lib/multiprocessing/synchronize.py", line 87, in _cleanup
sem_unlink(name)
FileNotFoundError: [Errno 2] No such file or directory
./home/buildbot/buildarea/3.10.cstratak-fedora-rawhide-aarch64.refleak/build/Lib/multiprocessing/resource_tracker.py:224: UserWarning: resource_tracker: There appear to be 6 leaked semaphore objects to clean up at shutdown
warnings.warn('resource_tracker: There appear to be %d '
Traceback (most recent call last):
File "/home/buildbot/buildarea/3.10.cstratak-fedora-rawhide-aarch64.refleak/build/Lib/multiprocessing/util.py", line 300, in _run_finalizers
finalizer()
File "/home/buildbot/buildarea/3.10.cstratak-fedora-rawhide-aarch64.refleak/build/Lib/multiprocessing/util.py", line 224, in __call__
res = self._callback(*self._args, **self._kwargs)
File "/home/buildbot/buildarea/3.10.cstratak-fedora-rawhide-aarch64.refleak/build/Lib/multiprocessing/synchronize.py", line 87, in _cleanup
sem_unlink(name)
FileNotFoundError: [Errno 2] No such file or directory
Traceback (most recent call last):
File "/home/buildbot/buildarea/3.10.cstratak-fedora-rawhide-aarch64.refleak/build/Lib/multiprocessing/util.py", line 300, in _run_finalizers
finalizer()
File "/home/buildbot/buildarea/3.10.cstratak-fedora-rawhide-aarch64.refleak/build/Lib/multiprocessing/util.py", line 224, in __call__
res = self._callback(*self._args, **self._kwargs)
File "/home/buildbot/buildarea/3.10.cstratak-fedora-rawhide-aarch64.refleak/build/Lib/multiprocessing/synchronize.py", line 87, in _cleanup
sem_unlink(name)
FileNotFoundError: [Errno 2] No such file or directory
Traceback (most recent call last):
File "/home/buildbot/buildarea/3.10.cstratak-fedora-rawhide-aarch64.refleak/build/Lib/multiprocessing/util.py", line 300, in _run_finalizers
finalizer()
File "/home/buildbot/buildarea/3.10.cstratak-fedora-rawhide-aarch64.refleak/build/Lib/multiprocessing/util.py", line 224, in __call__
res = self._callback(*self._args, **self._kwargs)
File "/home/buildbot/buildarea/3.10.cstratak-fedora-rawhide-aarch64.refleak/build/Lib/multiprocessing/synchronize.py", line 87, in _cleanup
sem_unlink(name)
FileNotFoundError: [Errno 2] No such file or directory
Traceback (most recent call last):
File "/home/buildbot/buildarea/3.10.cstratak-fedora-rawhide-aarch64.refleak/build/Lib/multiprocessing/util.py", line 300, in _run_finalizers
finalizer()
File "/home/buildbot/buildarea/3.10.cstratak-fedora-rawhide-aarch64.refleak/build/Lib/multiprocessing/util.py", line 224, in __call__
res = self._callback(*self._args, **self._kwargs)
File "/home/buildbot/buildarea/3.10.cstratak-fedora-rawhide-aarch64.refleak/build/Lib/multiprocessing/synchronize.py", line 87, in _cleanup
sem_unlink(name)
FileNotFoundError: [Errno 2] No such file or directory
Traceback (most recent call last):
File "/home/buildbot/buildarea/3.10.cstratak-fedora-rawhide-aarch64.refleak/build/Lib/multiprocessing/util.py", line 300, in _run_finalizers
finalizer()
File "/home/buildbot/buildarea/3.10.cstratak-fedora-rawhide-aarch64.refleak/build/Lib/multiprocessing/util.py", line 224, in __call__
res = self._callback(*self._args, **self._kwargs)
File "/home/buildbot/buildarea/3.10.cstratak-fedora-rawhide-aarch64.refleak/build/Lib/multiprocessing/synchronize.py", line 87, in _cleanup
sem_unlink(name)
FileNotFoundError: [Errno 2] No such file or directory
Traceback (most recent call last):
File "/home/buildbot/buildarea/3.10.cstratak-fedora-rawhide-aarch64.refleak/build/Lib/multiprocessing/util.py", line 300, in _run_finalizers
finalizer()
File "/home/buildbot/buildarea/3.10.cstratak-fedora-rawhide-aarch64.refleak/build/Lib/multiprocessing/util.py", line 224, in __call__
res = self._callback(*self._args, **self._kwargs)
File "/home/buildbot/buildarea/3.10.cstratak-fedora-rawhide-aarch64.refleak/build/Lib/multiprocessing/synchronize.py", line 87, in _cleanup
sem_unlink(name)
FileNotFoundError: [Errno 2] No such file or directory
./home/buildbot/buildarea/3.10.cstratak-fedora-rawhide-aarch64.refleak/build/Lib/multiprocessing/resource_tracker.py:224: UserWarning: resource_tracker: There appear to be 6 leaked semaphore objects to clean up at shutdown
warnings.warn('resource_tracker: There appear to be %d '
Traceback (most recent call last):
File "/home/buildbot/buildarea/3.10.cstratak-fedora-rawhide-aarch64.refleak/build/Lib/multiprocessing/util.py", line 300, in _run_finalizers
finalizer()
File "/home/buildbot/buildarea/3.10.cstratak-fedora-rawhide-aarch64.refleak/build/Lib/multiprocessing/util.py", line 224, in __call__
res = self._callback(*self._args, **self._kwargs)
File "/home/buildbot/buildarea/3.10.cstratak-fedora-rawhide-aarch64.refleak/build/Lib/multiprocessing/synchronize.py", line 87, in _cleanup
sem_unlink(name)
FileNotFoundError: [Errno 2] No such file or directory
Traceback (most recent call last):
File "/home/buildbot/buildarea/3.10.cstratak-fedora-rawhide-aarch64.refleak/build/Lib/multiprocessing/util.py", line 300, in _run_finalizers
finalizer()
File "/home/buildbot/buildarea/3.10.cstratak-fedora-rawhide-aarch64.refleak/build/Lib/multiprocessing/util.py", line 224, in __call__
res = self._callback(*self._args, **self._kwargs)
File "/home/buildbot/buildarea/3.10.cstratak-fedora-rawhide-aarch64.refleak/build/Lib/multiprocessing/synchronize.py", line 87, in _cleanup
sem_unlink(name)
FileNotFoundError: [Errno 2] No such file or directory
Traceback (most recent call last):
File "/home/buildbot/buildarea/3.10.cstratak-fedora-rawhide-aarch64.refleak/build/Lib/multiprocessing/util.py", line 300, in _run_finalizers
finalizer()
File "/home/buildbot/buildarea/3.10.cstratak-fedora-rawhide-aarch64.refleak/build/Lib/multiprocessing/util.py", line 224, in __call__
res = self._callback(*self._args, **self._kwargs)
File "/home/buildbot/buildarea/3.10.cstratak-fedora-rawhide-aarch64.refleak/build/Lib/multiprocessing/synchronize.py", line 87, in _cleanup
sem_unlink(name)
FileNotFoundError: [Errno 2] No such file or directory
Traceback (most recent call last):
File "/home/buildbot/buildarea/3.10.cstratak-fedora-rawhide-aarch64.refleak/build/Lib/multiprocessing/util.py", line 300, in _run_finalizers
finalizer()
File "/home/buildbot/buildarea/3.10.cstratak-fedora-rawhide-aarch64.refleak/build/Lib/multiprocessing/util.py", line 224, in __call__
res = self._callback(*self._args, **self._kwargs)
File "/home/buildbot/buildarea/3.10.cstratak-fedora-rawhide-aarch64.refleak/build/Lib/multiprocessing/synchronize.py", line 87, in _cleanup
sem_unlink(name)
FileNotFoundError: [Errno 2] No such file or directory
Traceback (most recent call last):
File "/home/buildbot/buildarea/3.10.cstratak-fedora-rawhide-aarch64.refleak/build/Lib/multiprocessing/util.py", line 300, in _run_finalizers
finalizer()
File "/home/buildbot/buildarea/3.10.cstratak-fedora-rawhide-aarch64.refleak/build/Lib/multiprocessing/util.py", line 224, in __call__
res = self._callback(*self._args, **self._kwargs)
File "/home/buildbot/buildarea/3.10.cstratak-fedora-rawhide-aarch64.refleak/build/Lib/multiprocessing/synchronize.py", line 87, in _cleanup
sem_unlink(name)
FileNotFoundError: [Errno 2] No such file or directory
Traceback (most recent call last):
File "/home/buildbot/buildarea/3.10.cstratak-fedora-rawhide-aarch64.refleak/build/Lib/multiprocessing/util.py", line 300, in _run_finalizers
finalizer()
File "/home/buildbot/buildarea/3.10.cstratak-fedora-rawhide-aarch64.refleak/build/Lib/multiprocessing/util.py", line 224, in __call__
res = self._callback(*self._args, **self._kwargs)
File "/home/buildbot/buildarea/3.10.cstratak-fedora-rawhide-aarch64.refleak/build/Lib/multiprocessing/synchronize.py", line 87, in _cleanup
sem_unlink(name)
FileNotFoundError: [Errno 2] No such file or directory
./home/buildbot/buildarea/3.10.cstratak-fedora-rawhide-aarch64.refleak/build/Lib/multiprocessing/resource_tracker.py:224: UserWarning: resource_tracker: There appear to be 6 leaked semaphore objects to clean up at shutdown
warnings.warn('resource_tracker: There appear to be %d '
Traceback (most recent call last):
File "/home/buildbot/buildarea/3.10.cstratak-fedora-rawhide-aarch64.refleak/build/Lib/multiprocessing/util.py", line 300, in _run_finalizers
finalizer()
File "/home/buildbot/buildarea/3.10.cstratak-fedora-rawhide-aarch64.refleak/build/Lib/multiprocessing/util.py", line 224, in __call__
res = self._callback(*self._args, **self._kwargs)
File "/home/buildbot/buildarea/3.10.cstratak-fedora-rawhide-aarch64.refleak/build/Lib/multiprocessing/synchronize.py", line 87, in _cleanup
sem_unlink(name)
FileNotFoundError: [Errno 2] No such file or directory
Traceback (most recent call last):
File "/home/buildbot/buildarea/3.10.cstratak-fedora-rawhide-aarch64.refleak/build/Lib/multiprocessing/util.py", line 300, in _run_finalizers
finalizer()
File "/home/buildbot/buildarea/3.10.cstratak-fedora-rawhide-aarch64.refleak/build/Lib/multiprocessing/util.py", line 224, in __call__
res = self._callback(*self._args, **self._kwargs)
File "/home/buildbot/buildarea/3.10.cstratak-fedora-rawhide-aarch64.refleak/build/Lib/multiprocessing/synchronize.py", line 87, in _cleanup
sem_unlink(name)
FileNotFoundError: [Errno 2] No such file or directory
Traceback (most recent call last):
File "/home/buildbot/buildarea/3.10.cstratak-fedora-rawhide-aarch64.refleak/build/Lib/multiprocessing/util.py", line 300, in _run_finalizers
finalizer()
File "/home/buildbot/buildarea/3.10.cstratak-fedora-rawhide-aarch64.refleak/build/Lib/multiprocessing/util.py", line 224, in __call__
res = self._callback(*self._args, **self._kwargs)
File "/home/buildbot/buildarea/3.10.cstratak-fedora-rawhide-aarch64.refleak/build/Lib/multiprocessing/synchronize.py", line 87, in _cleanup
sem_unlink(name)
FileNotFoundError: [Errno 2] No such file or directory
Traceback (most recent call last):
File "/home/buildbot/buildarea/3.10.cstratak-fedora-rawhide-aarch64.refleak/build/Lib/multiprocessing/util.py", line 300, in _run_finalizers
finalizer()
File "/home/buildbot/buildarea/3.10.cstratak-fedora-rawhide-aarch64.refleak/build/Lib/multiprocessing/util.py", line 224, in __call__
res = self._callback(*self._args, **self._kwargs)
File "/home/buildbot/buildarea/3.10.cstratak-fedora-rawhide-aarch64.refleak/build/Lib/multiprocessing/synchronize.py", line 87, in _cleanup
sem_unlink(name)
FileNotFoundError: [Errno 2] No such file or directory
Traceback (most recent call last):
File "/home/buildbot/buildarea/3.10.cstratak-fedora-rawhide-aarch64.refleak/build/Lib/multiprocessing/util.py", line 300, in _run_finalizers
finalizer()
File "/home/buildbot/buildarea/3.10.cstratak-fedora-rawhide-aarch64.refleak/build/Lib/multiprocessing/util.py", line 224, in __call__
res = self._callback(*self._args, **self._kwargs)
File "/home/buildbot/buildarea/3.10.cstratak-fedora-rawhide-aarch64.refleak/build/Lib/multiprocessing/synchronize.py", line 87, in _cleanup
sem_unlink(name)
FileNotFoundError: [Errno 2] No such file or directory
Traceback (most recent call last):
File "/home/buildbot/buildarea/3.10.cstratak-fedora-rawhide-aarch64.refleak/build/Lib/multiprocessing/util.py", line 300, in _run_finalizers
finalizer()
File "/home/buildbot/buildarea/3.10.cstratak-fedora-rawhide-aarch64.refleak/build/Lib/multiprocessing/util.py", line 224, in __call__
res = self._callback(*self._args, **self._kwargs)
File "/home/buildbot/buildarea/3.10.cstratak-fedora-rawhide-aarch64.refleak/build/Lib/multiprocessing/synchronize.py", line 87, in _cleanup
sem_unlink(name)
FileNotFoundError: [Errno 2] No such file or directory
./home/buildbot/buildarea/3.10.cstratak-fedora-rawhide-aarch64.refleak/build/Lib/multiprocessing/resource_tracker.py:224: UserWarning: resource_tracker: There appear to be 6 leaked semaphore objects to clean up at shutdown
warnings.warn('resource_tracker: There appear to be %d '
Traceback (most recent call last):
File "/home/buildbot/buildarea/3.10.cstratak-fedora-rawhide-aarch64.refleak/build/Lib/multiprocessing/util.py", line 300, in _run_finalizers
finalizer()
File "/home/buildbot/buildarea/3.10.cstratak-fedora-rawhide-aarch64.refleak/build/Lib/multiprocessing/util.py", line 224, in __call__
res = self._callback(*self._args, **self._kwargs)
File "/home/buildbot/buildarea/3.10.cstratak-fedora-rawhide-aarch64.refleak/build/Lib/multiprocessing/synchronize.py", line 87, in _cleanup
sem_unlink(name)
FileNotFoundError: [Errno 2] No such file or directory
Traceback (most recent call last):
File "/home/buildbot/buildarea/3.10.cstratak-fedora-rawhide-aarch64.refleak/build/Lib/multiprocessing/util.py", line 300, in _run_finalizers
finalizer()
File "/home/buildbot/buildarea/3.10.cstratak-fedora-rawhide-aarch64.refleak/build/Lib/multiprocessing/util.py", line 224, in __call__
res = self._callback(*self._args, **self._kwargs)
File "/home/buildbot/buildarea/3.10.cstratak-fedora-rawhide-aarch64.refleak/build/Lib/multiprocessing/synchronize.py", line 87, in _cleanup
sem_unlink(name)
FileNotFoundError: [Errno 2] No such file or directory
Traceback (most recent call last):
File "/home/buildbot/buildarea/3.10.cstratak-fedora-rawhide-aarch64.refleak/build/Lib/multiprocessing/util.py", line 300, in _run_finalizers
finalizer()
File "/home/buildbot/buildarea/3.10.cstratak-fedora-rawhide-aarch64.refleak/build/Lib/multiprocessing/util.py", line 224, in __call__
res = self._callback(*self._args, **self._kwargs)
File "/home/buildbot/buildarea/3.10.cstratak-fedora-rawhide-aarch64.refleak/build/Lib/multiprocessing/synchronize.py", line 87, in _cleanup
sem_unlink(name)
FileNotFoundError: [Errno 2] No such file or directory
Traceback (most recent call last):
File "/home/buildbot/buildarea/3.10.cstratak-fedora-rawhide-aarch64.refleak/build/Lib/multiprocessing/util.py", line 300, in _run_finalizers
finalizer()
File "/home/buildbot/buildarea/3.10.cstratak-fedora-rawhide-aarch64.refleak/build/Lib/multiprocessing/util.py", line 224, in __call__
res = self._callback(*self._args, **self._kwargs)
File "/home/buildbot/buildarea/3.10.cstratak-fedora-rawhide-aarch64.refleak/build/Lib/multiprocessing/synchronize.py", line 87, in _cleanup
sem_unlink(name)
FileNotFoundError: [Errno 2] No such file or directory
Traceback (most recent call last):
File "/home/buildbot/buildarea/3.10.cstratak-fedora-rawhide-aarch64.refleak/build/Lib/multiprocessing/util.py", line 300, in _run_finalizers
finalizer()
File "/home/buildbot/buildarea/3.10.cstratak-fedora-rawhide-aarch64.refleak/build/Lib/multiprocessing/util.py", line 224, in __call__
res = self._callback(*self._args, **self._kwargs)
File "/home/buildbot/buildarea/3.10.cstratak-fedora-rawhide-aarch64.refleak/build/Lib/multiprocessing/synchronize.py", line 87, in _cleanup
sem_unlink(name)
FileNotFoundError: [Errno 2] No such file or directory
Traceback (most recent call last):
File "/home/buildbot/buildarea/3.10.cstratak-fedora-rawhide-aarch64.refleak/build/Lib/multiprocessing/util.py", line 300, in _run_finalizers
finalizer()
File "/home/buildbot/buildarea/3.10.cstratak-fedora-rawhide-aarch64.refleak/build/Lib/multiprocessing/util.py", line 224, in __call__
res = self._callback(*self._args, **self._kwargs)
File "/home/buildbot/buildarea/3.10.cstratak-fedora-rawhide-aarch64.refleak/build/Lib/multiprocessing/synchronize.py", line 87, in _cleanup
sem_unlink(name)
FileNotFoundError: [Errno 2] No such file or directory
./home/buildbot/buildarea/3.10.cstratak-fedora-rawhide-aarch64.refleak/build/Lib/multiprocessing/resource_tracker.py:224: UserWarning: resource_tracker: There appear to be 6 leaked semaphore objects to clean up at shutdown
warnings.warn('resource_tracker: There appear to be %d '
Traceback (most recent call last):
File "/home/buildbot/buildarea/3.10.cstratak-fedora-rawhide-aarch64.refleak/build/Lib/multiprocessing/util.py", line 300, in _run_finalizers
finalizer()
File "/home/buildbot/buildarea/3.10.cstratak-fedora-rawhide-aarch64.refleak/build/Lib/multiprocessing/util.py", line 224, in __call__
res = self._callback(*self._args, **self._kwargs)
File "/home/buildbot/buildarea/3.10.cstratak-fedora-rawhide-aarch64.refleak/build/Lib/multiprocessing/synchronize.py", line 87, in _cleanup
sem_unlink(name)
FileNotFoundError: [Errno 2] No such file or directory
Traceback (most recent call last):
File "/home/buildbot/buildarea/3.10.cstratak-fedora-rawhide-aarch64.refleak/build/Lib/multiprocessing/util.py", line 300, in _run_finalizers
finalizer()
File "/home/buildbot/buildarea/3.10.cstratak-fedora-rawhide-aarch64.refleak/build/Lib/multiprocessing/util.py", line 224, in __call__
res = self._callback(*self._args, **self._kwargs)
File "/home/buildbot/buildarea/3.10.cstratak-fedora-rawhide-aarch64.refleak/build/Lib/multiprocessing/synchronize.py", line 87, in _cleanup
sem_unlink(name)
FileNotFoundError: [Errno 2] No such file or directory
Traceback (most recent call last):
File "/home/buildbot/buildarea/3.10.cstratak-fedora-rawhide-aarch64.refleak/build/Lib/multiprocessing/util.py", line 300, in _run_finalizers
finalizer()
File "/home/buildbot/buildarea/3.10.cstratak-fedora-rawhide-aarch64.refleak/build/Lib/multiprocessing/util.py", line 224, in __call__
res = self._callback(*self._args, **self._kwargs)
File "/home/buildbot/buildarea/3.10.cstratak-fedora-rawhide-aarch64.refleak/build/Lib/multiprocessing/synchronize.py", line 87, in _cleanup
sem_unlink(name)
FileNotFoundError: [Errno 2] No such file or directory
Traceback (most recent call last):
File "/home/buildbot/buildarea/3.10.cstratak-fedora-rawhide-aarch64.refleak/build/Lib/multiprocessing/util.py", line 300, in _run_finalizers
finalizer()
File "/home/buildbot/buildarea/3.10.cstratak-fedora-rawhide-aarch64.refleak/build/Lib/multiprocessing/util.py", line 224, in __call__
res = self._callback(*self._args, **self._kwargs)
File "/home/buildbot/buildarea/3.10.cstratak-fedora-rawhide-aarch64.refleak/build/Lib/multiprocessing/synchronize.py", line 87, in _cleanup
sem_unlink(name)
FileNotFoundError: [Errno 2] No such file or directory
Traceback (most recent call last):
File "/home/buildbot/buildarea/3.10.cstratak-fedora-rawhide-aarch64.refleak/build/Lib/multiprocessing/util.py", line 300, in _run_finalizers
finalizer()
File "/home/buildbot/buildarea/3.10.cstratak-fedora-rawhide-aarch64.refleak/build/Lib/multiprocessing/util.py", line 224, in __call__
res = self._callback(*self._args, **self._kwargs)
File "/home/buildbot/buildarea/3.10.cstratak-fedora-rawhide-aarch64.refleak/build/Lib/multiprocessing/synchronize.py", line 87, in _cleanup
sem_unlink(name)
FileNotFoundError: [Errno 2] No such file or directory
Traceback (most recent call last):
File "/home/buildbot/buildarea/3.10.cstratak-fedora-rawhide-aarch64.refleak/build/Lib/multiprocessing/util.py", line 300, in _run_finalizers
finalizer()
File "/home/buildbot/buildarea/3.10.cstratak-fedora-rawhide-aarch64.refleak/build/Lib/multiprocessing/util.py", line 224, in __call__
res = self._callback(*self._args, **self._kwargs)
File "/home/buildbot/buildarea/3.10.cstratak-fedora-rawhide-aarch64.refleak/build/Lib/multiprocessing/synchronize.py", line 87, in _cleanup
sem_unlink(name)
FileNotFoundError: [Errno 2] No such file or directory
.
Test report
===========
Sincerely,
-The BuildbotThe Buildbot has detected a new failure on builder PPC64LE RHEL8 Refleaks 3.10 while building Python.
Full details are available at:
https://buildbot.python.org/all/#builders/632/builds/29
Buildbot URL: https://buildbot.python.org/all/
Worker for this Build: cstratak-RHEL8-ppc64le
Build Reason: <unknown>
Blamelist:
BUILD FAILED: failed test (failure)
Summary of the results of the build (if available):
===================================================
Captured traceback
==================
Traceback (most recent call last):
File "/home/buildbot/buildarea/3.10.cstratak-RHEL8-ppc64le.refleak/build/Lib/multiprocessing/util.py", line 300, in _run_finalizers
finalizer()
File "/home/buildbot/buildarea/3.10.cstratak-RHEL8-ppc64le.refleak/build/Lib/multiprocessing/util.py", line 224, in __call__
res = self._callback(*self._args, **self._kwargs)
File "/home/buildbot/buildarea/3.10.cstratak-RHEL8-ppc64le.refleak/build/Lib/multiprocessing/synchronize.py", line 87, in _cleanup
sem_unlink(name)
FileNotFoundError: [Errno 2] No such file or directory
Traceback (most recent call last):
File "/home/buildbot/buildarea/3.10.cstratak-RHEL8-ppc64le.refleak/build/Lib/multiprocessing/util.py", line 300, in _run_finalizers
finalizer()
File "/home/buildbot/buildarea/3.10.cstratak-RHEL8-ppc64le.refleak/build/Lib/multiprocessing/util.py", line 224, in __call__
res = self._callback(*self._args, **self._kwargs)
File "/home/buildbot/buildarea/3.10.cstratak-RHEL8-ppc64le.refleak/build/Lib/multiprocessing/synchronize.py", line 87, in _cleanup
sem_unlink(name)
FileNotFoundError: [Errno 2] No such file or directory
Traceback (most recent call last):
File "/home/buildbot/buildarea/3.10.cstratak-RHEL8-ppc64le.refleak/build/Lib/multiprocessing/util.py", line 300, in _run_finalizers
finalizer()
File "/home/buildbot/buildarea/3.10.cstratak-RHEL8-ppc64le.refleak/build/Lib/multiprocessing/util.py", line 224, in __call__
res = self._callback(*self._args, **self._kwargs)
File "/home/buildbot/buildarea/3.10.cstratak-RHEL8-ppc64le.refleak/build/Lib/multiprocessing/synchronize.py", line 87, in _cleanup
sem_unlink(name)
FileNotFoundError: [Errno 2] No such file or directory
Traceback (most recent call last):
File "/home/buildbot/buildarea/3.10.cstratak-RHEL8-ppc64le.refleak/build/Lib/multiprocessing/util.py", line 300, in _run_finalizers
finalizer()
File "/home/buildbot/buildarea/3.10.cstratak-RHEL8-ppc64le.refleak/build/Lib/multiprocessing/util.py", line 224, in __call__
res = self._callback(*self._args, **self._kwargs)
File "/home/buildbot/buildarea/3.10.cstratak-RHEL8-ppc64le.refleak/build/Lib/multiprocessing/synchronize.py", line 87, in _cleanup
sem_unlink(name)
FileNotFoundError: [Errno 2] No such file or directory
Traceback (most recent call last):
File "/home/buildbot/buildarea/3.10.cstratak-RHEL8-ppc64le.refleak/build/Lib/multiprocessing/util.py", line 300, in _run_finalizers
finalizer()
File "/home/buildbot/buildarea/3.10.cstratak-RHEL8-ppc64le.refleak/build/Lib/multiprocessing/util.py", line 224, in __call__
res = self._callback(*self._args, **self._kwargs)
File "/home/buildbot/buildarea/3.10.cstratak-RHEL8-ppc64le.refleak/build/Lib/multiprocessing/synchronize.py", line 87, in _cleanup
sem_unlink(name)
FileNotFoundError: [Errno 2] No such file or directory
Traceback (most recent call last):
File "/home/buildbot/buildarea/3.10.cstratak-RHEL8-ppc64le.refleak/build/Lib/multiprocessing/util.py", line 300, in _run_finalizers
finalizer()
File "/home/buildbot/buildarea/3.10.cstratak-RHEL8-ppc64le.refleak/build/Lib/multiprocessing/util.py", line 224, in __call__
res = self._callback(*self._args, **self._kwargs)
File "/home/buildbot/buildarea/3.10.cstratak-RHEL8-ppc64le.refleak/build/Lib/multiprocessing/synchronize.py", line 87, in _cleanup
sem_unlink(name)
FileNotFoundError: [Errno 2] No such file or directory
./home/buildbot/buildarea/3.10.cstratak-RHEL8-ppc64le.refleak/build/Lib/multiprocessing/resource_tracker.py:224: UserWarning: resource_tracker: There appear to be 6 leaked semaphore objects to clean up at shutdown
warnings.warn('resource_tracker: There appear to be %d '
Traceback (most recent call last):
File "/home/buildbot/buildarea/3.10.cstratak-RHEL8-ppc64le.refleak/build/Lib/multiprocessing/util.py", line 300, in _run_finalizers
finalizer()
File "/home/buildbot/buildarea/3.10.cstratak-RHEL8-ppc64le.refleak/build/Lib/multiprocessing/util.py", line 224, in __call__
res = self._callback(*self._args, **self._kwargs)
File "/home/buildbot/buildarea/3.10.cstratak-RHEL8-ppc64le.refleak/build/Lib/multiprocessing/synchronize.py", line 87, in _cleanup
sem_unlink(name)
FileNotFoundError: [Errno 2] No such file or directory
Traceback (most recent call last):
File "/home/buildbot/buildarea/3.10.cstratak-RHEL8-ppc64le.refleak/build/Lib/multiprocessing/util.py", line 300, in _run_finalizers
finalizer()
File "/home/buildbot/buildarea/3.10.cstratak-RHEL8-ppc64le.refleak/build/Lib/multiprocessing/util.py", line 224, in __call__
res = self._callback(*self._args, **self._kwargs)
File "/home/buildbot/buildarea/3.10.cstratak-RHEL8-ppc64le.refleak/build/Lib/multiprocessing/synchronize.py", line 87, in _cleanup
sem_unlink(name)
FileNotFoundError: [Errno 2] No such file or directory
Traceback (most recent call last):
File "/home/buildbot/buildarea/3.10.cstratak-RHEL8-ppc64le.refleak/build/Lib/multiprocessing/util.py", line 300, in _run_finalizers
finalizer()
File "/home/buildbot/buildarea/3.10.cstratak-RHEL8-ppc64le.refleak/build/Lib/multiprocessing/util.py", line 224, in __call__
res = self._callback(*self._args, **self._kwargs)
File "/home/buildbot/buildarea/3.10.cstratak-RHEL8-ppc64le.refleak/build/Lib/multiprocessing/synchronize.py", line 87, in _cleanup
sem_unlink(name)
FileNotFoundError: [Errno 2] No such file or directory
Traceback (most recent call last):
File "/home/buildbot/buildarea/3.10.cstratak-RHEL8-ppc64le.refleak/build/Lib/multiprocessing/util.py", line 300, in _run_finalizers
finalizer()
File "/home/buildbot/buildarea/3.10.cstratak-RHEL8-ppc64le.refleak/build/Lib/multiprocessing/util.py", line 224, in __call__
res = self._callback(*self._args, **self._kwargs)
File "/home/buildbot/buildarea/3.10.cstratak-RHEL8-ppc64le.refleak/build/Lib/multiprocessing/synchronize.py", line 87, in _cleanup
sem_unlink(name)
FileNotFoundError: [Errno 2] No such file or directory
Traceback (most recent call last):
File "/home/buildbot/buildarea/3.10.cstratak-RHEL8-ppc64le.refleak/build/Lib/multiprocessing/util.py", line 300, in _run_finalizers
finalizer()
File "/home/buildbot/buildarea/3.10.cstratak-RHEL8-ppc64le.refleak/build/Lib/multiprocessing/util.py", line 224, in __call__
res = self._callback(*self._args, **self._kwargs)
File "/home/buildbot/buildarea/3.10.cstratak-RHEL8-ppc64le.refleak/build/Lib/multiprocessing/synchronize.py", line 87, in _cleanup
sem_unlink(name)
FileNotFoundError: [Errno 2] No such file or directory
Traceback (most recent call last):
File "/home/buildbot/buildarea/3.10.cstratak-RHEL8-ppc64le.refleak/build/Lib/multiprocessing/util.py", line 300, in _run_finalizers
finalizer()
File "/home/buildbot/buildarea/3.10.cstratak-RHEL8-ppc64le.refleak/build/Lib/multiprocessing/util.py", line 224, in __call__
res = self._callback(*self._args, **self._kwargs)
File "/home/buildbot/buildarea/3.10.cstratak-RHEL8-ppc64le.refleak/build/Lib/multiprocessing/synchronize.py", line 87, in _cleanup
sem_unlink(name)
FileNotFoundError: [Errno 2] No such file or directory
./home/buildbot/buildarea/3.10.cstratak-RHEL8-ppc64le.refleak/build/Lib/multiprocessing/resource_tracker.py:224: UserWarning: resource_tracker: There appear to be 6 leaked semaphore objects to clean up at shutdown
warnings.warn('resource_tracker: There appear to be %d '
Traceback (most recent call last):
File "/home/buildbot/buildarea/3.10.cstratak-RHEL8-ppc64le.refleak/build/Lib/multiprocessing/util.py", line 300, in _run_finalizers
finalizer()
File "/home/buildbot/buildarea/3.10.cstratak-RHEL8-ppc64le.refleak/build/Lib/multiprocessing/util.py", line 224, in __call__
res = self._callback(*self._args, **self._kwargs)
File "/home/buildbot/buildarea/3.10.cstratak-RHEL8-ppc64le.refleak/build/Lib/multiprocessing/synchronize.py", line 87, in _cleanup
sem_unlink(name)
FileNotFoundError: [Errno 2] No such file or directory
Traceback (most recent call last):
File "/home/buildbot/buildarea/3.10.cstratak-RHEL8-ppc64le.refleak/build/Lib/multiprocessing/util.py", line 300, in _run_finalizers
finalizer()
File "/home/buildbot/buildarea/3.10.cstratak-RHEL8-ppc64le.refleak/build/Lib/multiprocessing/util.py", line 224, in __call__
res = self._callback(*self._args, **self._kwargs)
File "/home/buildbot/buildarea/3.10.cstratak-RHEL8-ppc64le.refleak/build/Lib/multiprocessing/synchronize.py", line 87, in _cleanup
sem_unlink(name)
FileNotFoundError: [Errno 2] No such file or directory
Traceback (most recent call last):
File "/home/buildbot/buildarea/3.10.cstratak-RHEL8-ppc64le.refleak/build/Lib/multiprocessing/util.py", line 300, in _run_finalizers
finalizer()
File "/home/buildbot/buildarea/3.10.cstratak-RHEL8-ppc64le.refleak/build/Lib/multiprocessing/util.py", line 224, in __call__
res = self._callback(*self._args, **self._kwargs)
File "/home/buildbot/buildarea/3.10.cstratak-RHEL8-ppc64le.refleak/build/Lib/multiprocessing/synchronize.py", line 87, in _cleanup
sem_unlink(name)
FileNotFoundError: [Errno 2] No such file or directory
Traceback (most recent call last):
File "/home/buildbot/buildarea/3.10.cstratak-RHEL8-ppc64le.refleak/build/Lib/multiprocessing/util.py", line 300, in _run_finalizers
finalizer()
File "/home/buildbot/buildarea/3.10.cstratak-RHEL8-ppc64le.refleak/build/Lib/multiprocessing/util.py", line 224, in __call__
res = self._callback(*self._args, **self._kwargs)
File "/home/buildbot/buildarea/3.10.cstratak-RHEL8-ppc64le.refleak/build/Lib/multiprocessing/synchronize.py", line 87, in _cleanup
sem_unlink(name)
FileNotFoundError: [Errno 2] No such file or directory
Traceback (most recent call last):
File "/home/buildbot/buildarea/3.10.cstratak-RHEL8-ppc64le.refleak/build/Lib/multiprocessing/util.py", line 300, in _run_finalizers
finalizer()
File "/home/buildbot/buildarea/3.10.cstratak-RHEL8-ppc64le.refleak/build/Lib/multiprocessing/util.py", line 224, in __call__
res = self._callback(*self._args, **self._kwargs)
File "/home/buildbot/buildarea/3.10.cstratak-RHEL8-ppc64le.refleak/build/Lib/multiprocessing/synchronize.py", line 87, in _cleanup
sem_unlink(name)
FileNotFoundError: [Errno 2] No such file or directory
Traceback (most recent call last):
File "/home/buildbot/buildarea/3.10.cstratak-RHEL8-ppc64le.refleak/build/Lib/multiprocessing/util.py", line 300, in _run_finalizers
finalizer()
File "/home/buildbot/buildarea/3.10.cstratak-RHEL8-ppc64le.refleak/build/Lib/multiprocessing/util.py", line 224, in __call__
res = self._callback(*self._args, **self._kwargs)
File "/home/buildbot/buildarea/3.10.cstratak-RHEL8-ppc64le.refleak/build/Lib/multiprocessing/synchronize.py", line 87, in _cleanup
sem_unlink(name)
FileNotFoundError: [Errno 2] No such file or directory
./home/buildbot/buildarea/3.10.cstratak-RHEL8-ppc64le.refleak/build/Lib/multiprocessing/resource_tracker.py:224: UserWarning: resource_tracker: There appear to be 6 leaked semaphore objects to clean up at shutdown
warnings.warn('resource_tracker: There appear to be %d '
Traceback (most recent call last):
File "/home/buildbot/buildarea/3.10.cstratak-RHEL8-ppc64le.refleak/build/Lib/multiprocessing/util.py", line 300, in _run_finalizers
finalizer()
File "/home/buildbot/buildarea/3.10.cstratak-RHEL8-ppc64le.refleak/build/Lib/multiprocessing/util.py", line 224, in __call__
res = self._callback(*self._args, **self._kwargs)
File "/home/buildbot/buildarea/3.10.cstratak-RHEL8-ppc64le.refleak/build/Lib/multiprocessing/synchronize.py", line 87, in _cleanup
sem_unlink(name)
FileNotFoundError: [Errno 2] No such file or directory
Traceback (most recent call last):
File "/home/buildbot/buildarea/3.10.cstratak-RHEL8-ppc64le.refleak/build/Lib/multiprocessing/util.py", line 300, in _run_finalizers
finalizer()
File "/home/buildbot/buildarea/3.10.cstratak-RHEL8-ppc64le.refleak/build/Lib/multiprocessing/util.py", line 224, in __call__
res = self._callback(*self._args, **self._kwargs)
File "/home/buildbot/buildarea/3.10.cstratak-RHEL8-ppc64le.refleak/build/Lib/multiprocessing/synchronize.py", line 87, in _cleanup
sem_unlink(name)
FileNotFoundError: [Errno 2] No such file or directory
Traceback (most recent call last):
File "/home/buildbot/buildarea/3.10.cstratak-RHEL8-ppc64le.refleak/build/Lib/multiprocessing/util.py", line 300, in _run_finalizers
finalizer()
File "/home/buildbot/buildarea/3.10.cstratak-RHEL8-ppc64le.refleak/build/Lib/multiprocessing/util.py", line 224, in __call__
res = self._callback(*self._args, **self._kwargs)
File "/home/buildbot/buildarea/3.10.cstratak-RHEL8-ppc64le.refleak/build/Lib/multiprocessing/synchronize.py", line 87, in _cleanup
sem_unlink(name)
FileNotFoundError: [Errno 2] No such file or directory
Traceback (most recent call last):
File "/home/buildbot/buildarea/3.10.cstratak-RHEL8-ppc64le.refleak/build/Lib/multiprocessing/util.py", line 300, in _run_finalizers
finalizer()
File "/home/buildbot/buildarea/3.10.cstratak-RHEL8-ppc64le.refleak/build/Lib/multiprocessing/util.py", line 224, in __call__
res = self._callback(*self._args, **self._kwargs)
File "/home/buildbot/buildarea/3.10.cstratak-RHEL8-ppc64le.refleak/build/Lib/multiprocessing/synchronize.py", line 87, in _cleanup
sem_unlink(name)
FileNotFoundError: [Errno 2] No such file or directory
Traceback (most recent call last):
File "/home/buildbot/buildarea/3.10.cstratak-RHEL8-ppc64le.refleak/build/Lib/multiprocessing/util.py", line 300, in _run_finalizers
finalizer()
File "/home/buildbot/buildarea/3.10.cstratak-RHEL8-ppc64le.refleak/build/Lib/multiprocessing/util.py", line 224, in __call__
res = self._callback(*self._args, **self._kwargs)
File "/home/buildbot/buildarea/3.10.cstratak-RHEL8-ppc64le.refleak/build/Lib/multiprocessing/synchronize.py", line 87, in _cleanup
sem_unlink(name)
FileNotFoundError: [Errno 2] No such file or directory
Traceback (most recent call last):
File "/home/buildbot/buildarea/3.10.cstratak-RHEL8-ppc64le.refleak/build/Lib/multiprocessing/util.py", line 300, in _run_finalizers
finalizer()
File "/home/buildbot/buildarea/3.10.cstratak-RHEL8-ppc64le.refleak/build/Lib/multiprocessing/util.py", line 224, in __call__
res = self._callback(*self._args, **self._kwargs)
File "/home/buildbot/buildarea/3.10.cstratak-RHEL8-ppc64le.refleak/build/Lib/multiprocessing/synchronize.py", line 87, in _cleanup
sem_unlink(name)
FileNotFoundError: [Errno 2] No such file or directory
./home/buildbot/buildarea/3.10.cstratak-RHEL8-ppc64le.refleak/build/Lib/multiprocessing/resource_tracker.py:224: UserWarning: resource_tracker: There appear to be 6 leaked semaphore objects to clean up at shutdown
warnings.warn('resource_tracker: There appear to be %d '
Traceback (most recent call last):
File "/home/buildbot/buildarea/3.10.cstratak-RHEL8-ppc64le.refleak/build/Lib/multiprocessing/util.py", line 300, in _run_finalizers
finalizer()
File "/home/buildbot/buildarea/3.10.cstratak-RHEL8-ppc64le.refleak/build/Lib/multiprocessing/util.py", line 224, in __call__
res = self._callback(*self._args, **self._kwargs)
File "/home/buildbot/buildarea/3.10.cstratak-RHEL8-ppc64le.refleak/build/Lib/multiprocessing/synchronize.py", line 87, in _cleanup
sem_unlink(name)
FileNotFoundError: [Errno 2] No such file or directory
Traceback (most recent call last):
File "/home/buildbot/buildarea/3.10.cstratak-RHEL8-ppc64le.refleak/build/Lib/multiprocessing/util.py", line 300, in _run_finalizers
finalizer()
File "/home/buildbot/buildarea/3.10.cstratak-RHEL8-ppc64le.refleak/build/Lib/multiprocessing/util.py", line 224, in __call__
res = self._callback(*self._args, **self._kwargs)
File "/home/buildbot/buildarea/3.10.cstratak-RHEL8-ppc64le.refleak/build/Lib/multiprocessing/synchronize.py", line 87, in _cleanup
sem_unlink(name)
FileNotFoundError: [Errno 2] No such file or directory
Traceback (most recent call last):
File "/home/buildbot/buildarea/3.10.cstratak-RHEL8-ppc64le.refleak/build/Lib/multiprocessing/util.py", line 300, in _run_finalizers
finalizer()
File "/home/buildbot/buildarea/3.10.cstratak-RHEL8-ppc64le.refleak/build/Lib/multiprocessing/util.py", line 224, in __call__
res = self._callback(*self._args, **self._kwargs)
File "/home/buildbot/buildarea/3.10.cstratak-RHEL8-ppc64le.refleak/build/Lib/multiprocessing/synchronize.py", line 87, in _cleanup
sem_unlink(name)
FileNotFoundError: [Errno 2] No such file or directory
Traceback (most recent call last):
File "/home/buildbot/buildarea/3.10.cstratak-RHEL8-ppc64le.refleak/build/Lib/multiprocessing/util.py", line 300, in _run_finalizers
finalizer()
File "/home/buildbot/buildarea/3.10.cstratak-RHEL8-ppc64le.refleak/build/Lib/multiprocessing/util.py", line 224, in __call__
res = self._callback(*self._args, **self._kwargs)
File "/home/buildbot/buildarea/3.10.cstratak-RHEL8-ppc64le.refleak/build/Lib/multiprocessing/synchronize.py", line 87, in _cleanup
sem_unlink(name)
FileNotFoundError: [Errno 2] No such file or directory
Traceback (most recent call last):
File "/home/buildbot/buildarea/3.10.cstratak-RHEL8-ppc64le.refleak/build/Lib/multiprocessing/util.py", line 300, in _run_finalizers
finalizer()
File "/home/buildbot/buildarea/3.10.cstratak-RHEL8-ppc64le.refleak/build/Lib/multiprocessing/util.py", line 224, in __call__
res = self._callback(*self._args, **self._kwargs)
File "/home/buildbot/buildarea/3.10.cstratak-RHEL8-ppc64le.refleak/build/Lib/multiprocessing/synchronize.py", line 87, in _cleanup
sem_unlink(name)
FileNotFoundError: [Errno 2] No such file or directory
Traceback (most recent call last):
File "/home/buildbot/buildarea/3.10.cstratak-RHEL8-ppc64le.refleak/build/Lib/multiprocessing/util.py", line 300, in _run_finalizers
finalizer()
File "/home/buildbot/buildarea/3.10.cstratak-RHEL8-ppc64le.refleak/build/Lib/multiprocessing/util.py", line 224, in __call__
res = self._callback(*self._args, **self._kwargs)
File "/home/buildbot/buildarea/3.10.cstratak-RHEL8-ppc64le.refleak/build/Lib/multiprocessing/synchronize.py", line 87, in _cleanup
sem_unlink(name)
FileNotFoundError: [Errno 2] No such file or directory
./home/buildbot/buildarea/3.10.cstratak-RHEL8-ppc64le.refleak/build/Lib/multiprocessing/resource_tracker.py:224: UserWarning: resource_tracker: There appear to be 6 leaked semaphore objects to clean up at shutdown
warnings.warn('resource_tracker: There appear to be %d '
Traceback (most recent call last):
File "/home/buildbot/buildarea/3.10.cstratak-RHEL8-ppc64le.refleak/build/Lib/multiprocessing/util.py", line 300, in _run_finalizers
finalizer()
File "/home/buildbot/buildarea/3.10.cstratak-RHEL8-ppc64le.refleak/build/Lib/multiprocessing/util.py", line 224, in __call__
res = self._callback(*self._args, **self._kwargs)
File "/home/buildbot/buildarea/3.10.cstratak-RHEL8-ppc64le.refleak/build/Lib/multiprocessing/synchronize.py", line 87, in _cleanup
sem_unlink(name)
FileNotFoundError: [Errno 2] No such file or directory
Traceback (most recent call last):
File "/home/buildbot/buildarea/3.10.cstratak-RHEL8-ppc64le.refleak/build/Lib/multiprocessing/util.py", line 300, in _run_finalizers
finalizer()
File "/home/buildbot/buildarea/3.10.cstratak-RHEL8-ppc64le.refleak/build/Lib/multiprocessing/util.py", line 224, in __call__
res = self._callback(*self._args, **self._kwargs)
File "/home/buildbot/buildarea/3.10.cstratak-RHEL8-ppc64le.refleak/build/Lib/multiprocessing/synchronize.py", line 87, in _cleanup
sem_unlink(name)
FileNotFoundError: [Errno 2] No such file or directory
Traceback (most recent call last):
File "/home/buildbot/buildarea/3.10.cstratak-RHEL8-ppc64le.refleak/build/Lib/multiprocessing/util.py", line 300, in _run_finalizers
finalizer()
File "/home/buildbot/buildarea/3.10.cstratak-RHEL8-ppc64le.refleak/build/Lib/multiprocessing/util.py", line 224, in __call__
res = self._callback(*self._args, **self._kwargs)
File "/home/buildbot/buildarea/3.10.cstratak-RHEL8-ppc64le.refleak/build/Lib/multiprocessing/synchronize.py", line 87, in _cleanup
sem_unlink(name)
FileNotFoundError: [Errno 2] No such file or directory
Traceback (most recent call last):
File "/home/buildbot/buildarea/3.10.cstratak-RHEL8-ppc64le.refleak/build/Lib/multiprocessing/util.py", line 300, in _run_finalizers
finalizer()
File "/home/buildbot/buildarea/3.10.cstratak-RHEL8-ppc64le.refleak/build/Lib/multiprocessing/util.py", line 224, in __call__
res = self._callback(*self._args, **self._kwargs)
File "/home/buildbot/buildarea/3.10.cstratak-RHEL8-ppc64le.refleak/build/Lib/multiprocessing/synchronize.py", line 87, in _cleanup
sem_unlink(name)
FileNotFoundError: [Errno 2] No such file or directory
Traceback (most recent call last):
File "/home/buildbot/buildarea/3.10.cstratak-RHEL8-ppc64le.refleak/build/Lib/multiprocessing/util.py", line 300, in _run_finalizers
finalizer()
File "/home/buildbot/buildarea/3.10.cstratak-RHEL8-ppc64le.refleak/build/Lib/multiprocessing/util.py", line 224, in __call__
res = self._callback(*self._args, **self._kwargs)
File "/home/buildbot/buildarea/3.10.cstratak-RHEL8-ppc64le.refleak/build/Lib/multiprocessing/synchronize.py", line 87, in _cleanup
sem_unlink(name)
FileNotFoundError: [Errno 2] No such file or directory
Traceback (most recent call last):
File "/home/buildbot/buildarea/3.10.cstratak-RHEL8-ppc64le.refleak/build/Lib/multiprocessing/util.py", line 300, in _run_finalizers
finalizer()
File "/home/buildbot/buildarea/3.10.cstratak-RHEL8-ppc64le.refleak/build/Lib/multiprocessing/util.py", line 224, in __call__
res = self._callback(*self._args, **self._kwargs)
File "/home/buildbot/buildarea/3.10.cstratak-RHEL8-ppc64le.refleak/build/Lib/multiprocessing/synchronize.py", line 87, in _cleanup
sem_unlink(name)
FileNotFoundError: [Errno 2] No such file or directory
.
Test report
===========
Sincerely,
-The BuildbotThe Buildbot has detected a new failure on builder s390x RHEL8 Refleaks 3.10 while building Python.
Full details are available at:
https://buildbot.python.org/all/#builders/669/builds/31
Buildbot URL: https://buildbot.python.org/all/
Worker for this Build: edelsohn-rhel8-z
Build Reason: <unknown>
Blamelist:
BUILD FAILED: failed test (failure)
Summary of the results of the build (if available):
===================================================
Captured traceback
==================
Traceback (most recent call last):
File "/home/dje/cpython-buildarea/3.10.edelsohn-rhel8-z.refleak/build/Lib/multiprocessing/util.py", line 300, in _run_finalizers
finalizer()
File "/home/dje/cpython-buildarea/3.10.edelsohn-rhel8-z.refleak/build/Lib/multiprocessing/util.py", line 224, in __call__
res = self._callback(*self._args, **self._kwargs)
File "/home/dje/cpython-buildarea/3.10.edelsohn-rhel8-z.refleak/build/Lib/multiprocessing/synchronize.py", line 87, in _cleanup
sem_unlink(name)
FileNotFoundError: [Errno 2] No such file or directory
Traceback (most recent call last):
File "/home/dje/cpython-buildarea/3.10.edelsohn-rhel8-z.refleak/build/Lib/multiprocessing/util.py", line 300, in _run_finalizers
finalizer()
File "/home/dje/cpython-buildarea/3.10.edelsohn-rhel8-z.refleak/build/Lib/multiprocessing/util.py", line 224, in __call__
res = self._callback(*self._args, **self._kwargs)
File "/home/dje/cpython-buildarea/3.10.edelsohn-rhel8-z.refleak/build/Lib/multiprocessing/synchronize.py", line 87, in _cleanup
sem_unlink(name)
FileNotFoundError: [Errno 2] No such file or directory
Traceback (most recent call last):
File "/home/dje/cpython-buildarea/3.10.edelsohn-rhel8-z.refleak/build/Lib/multiprocessing/util.py", line 300, in _run_finalizers
finalizer()
File "/home/dje/cpython-buildarea/3.10.edelsohn-rhel8-z.refleak/build/Lib/multiprocessing/util.py", line 224, in __call__
res = self._callback(*self._args, **self._kwargs)
File "/home/dje/cpython-buildarea/3.10.edelsohn-rhel8-z.refleak/build/Lib/multiprocessing/synchronize.py", line 87, in _cleanup
sem_unlink(name)
FileNotFoundError: [Errno 2] No such file or directory
Traceback (most recent call last):
File "/home/dje/cpython-buildarea/3.10.edelsohn-rhel8-z.refleak/build/Lib/multiprocessing/util.py", line 300, in _run_finalizers
finalizer()
File "/home/dje/cpython-buildarea/3.10.edelsohn-rhel8-z.refleak/build/Lib/multiprocessing/util.py", line 224, in __call__
res = self._callback(*self._args, **self._kwargs)
File "/home/dje/cpython-buildarea/3.10.edelsohn-rhel8-z.refleak/build/Lib/multiprocessing/synchronize.py", line 87, in _cleanup
sem_unlink(name)
FileNotFoundError: [Errno 2] No such file or directory
Traceback (most recent call last):
File "/home/dje/cpython-buildarea/3.10.edelsohn-rhel8-z.refleak/build/Lib/multiprocessing/util.py", line 300, in _run_finalizers
finalizer()
File "/home/dje/cpython-buildarea/3.10.edelsohn-rhel8-z.refleak/build/Lib/multiprocessing/util.py", line 224, in __call__
res = self._callback(*self._args, **self._kwargs)
File "/home/dje/cpython-buildarea/3.10.edelsohn-rhel8-z.refleak/build/Lib/multiprocessing/synchronize.py", line 87, in _cleanup
sem_unlink(name)
FileNotFoundError: [Errno 2] No such file or directory
Traceback (most recent call last):
File "/home/dje/cpython-buildarea/3.10.edelsohn-rhel8-z.refleak/build/Lib/multiprocessing/util.py", line 300, in _run_finalizers
finalizer()
File "/home/dje/cpython-buildarea/3.10.edelsohn-rhel8-z.refleak/build/Lib/multiprocessing/util.py", line 224, in __call__
res = self._callback(*self._args, **self._kwargs)
File "/home/dje/cpython-buildarea/3.10.edelsohn-rhel8-z.refleak/build/Lib/multiprocessing/synchronize.py", line 87, in _cleanup
sem_unlink(name)
FileNotFoundError: [Errno 2] No such file or directory
./home/dje/cpython-buildarea/3.10.edelsohn-rhel8-z.refleak/build/Lib/multiprocessing/resource_tracker.py:224: UserWarning: resource_tracker: There appear to be 6 leaked semaphore objects to clean up at shutdown
warnings.warn('resource_tracker: There appear to be %d '
Traceback (most recent call last):
File "/home/dje/cpython-buildarea/3.10.edelsohn-rhel8-z.refleak/build/Lib/multiprocessing/util.py", line 300, in _run_finalizers
finalizer()
File "/home/dje/cpython-buildarea/3.10.edelsohn-rhel8-z.refleak/build/Lib/multiprocessing/util.py", line 224, in __call__
res = self._callback(*self._args, **self._kwargs)
File "/home/dje/cpython-buildarea/3.10.edelsohn-rhel8-z.refleak/build/Lib/multiprocessing/synchronize.py", line 87, in _cleanup
sem_unlink(name)
FileNotFoundError: [Errno 2] No such file or directory
Traceback (most recent call last):
File "/home/dje/cpython-buildarea/3.10.edelsohn-rhel8-z.refleak/build/Lib/multiprocessing/util.py", line 300, in _run_finalizers
finalizer()
File "/home/dje/cpython-buildarea/3.10.edelsohn-rhel8-z.refleak/build/Lib/multiprocessing/util.py", line 224, in __call__
res = self._callback(*self._args, **self._kwargs)
File "/home/dje/cpython-buildarea/3.10.edelsohn-rhel8-z.refleak/build/Lib/multiprocessing/synchronize.py", line 87, in _cleanup
sem_unlink(name)
FileNotFoundError: [Errno 2] No such file or directory
Traceback (most recent call last):
File "/home/dje/cpython-buildarea/3.10.edelsohn-rhel8-z.refleak/build/Lib/multiprocessing/util.py", line 300, in _run_finalizers
finalizer()
File "/home/dje/cpython-buildarea/3.10.edelsohn-rhel8-z.refleak/build/Lib/multiprocessing/util.py", line 224, in __call__
res = self._callback(*self._args, **self._kwargs)
File "/home/dje/cpython-buildarea/3.10.edelsohn-rhel8-z.refleak/build/Lib/multiprocessing/synchronize.py", line 87, in _cleanup
sem_unlink(name)
FileNotFoundError: [Errno 2] No such file or directory
Traceback (most recent call last):
File "/home/dje/cpython-buildarea/3.10.edelsohn-rhel8-z.refleak/build/Lib/multiprocessing/util.py", line 300, in _run_finalizers
finalizer()
File "/home/dje/cpython-buildarea/3.10.edelsohn-rhel8-z.refleak/build/Lib/multiprocessing/util.py", line 224, in __call__
res = self._callback(*self._args, **self._kwargs)
File "/home/dje/cpython-buildarea/3.10.edelsohn-rhel8-z.refleak/build/Lib/multiprocessing/synchronize.py", line 87, in _cleanup
sem_unlink(name)
FileNotFoundError: [Errno 2] No such file or directory
Traceback (most recent call last):
File "/home/dje/cpython-buildarea/3.10.edelsohn-rhel8-z.refleak/build/Lib/multiprocessing/util.py", line 300, in _run_finalizers
finalizer()
File "/home/dje/cpython-buildarea/3.10.edelsohn-rhel8-z.refleak/build/Lib/multiprocessing/util.py", line 224, in __call__
res = self._callback(*self._args, **self._kwargs)
File "/home/dje/cpython-buildarea/3.10.edelsohn-rhel8-z.refleak/build/Lib/multiprocessing/synchronize.py", line 87, in _cleanup
sem_unlink(name)
FileNotFoundError: [Errno 2] No such file or directory
Traceback (most recent call last):
File "/home/dje/cpython-buildarea/3.10.edelsohn-rhel8-z.refleak/build/Lib/multiprocessing/util.py", line 300, in _run_finalizers
finalizer()
File "/home/dje/cpython-buildarea/3.10.edelsohn-rhel8-z.refleak/build/Lib/multiprocessing/util.py", line 224, in __call__
res = self._callback(*self._args, **self._kwargs)
File "/home/dje/cpython-buildarea/3.10.edelsohn-rhel8-z.refleak/build/Lib/multiprocessing/synchronize.py", line 87, in _cleanup
sem_unlink(name)
FileNotFoundError: [Errno 2] No such file or directory
./home/dje/cpython-buildarea/3.10.edelsohn-rhel8-z.refleak/build/Lib/multiprocessing/resource_tracker.py:224: UserWarning: resource_tracker: There appear to be 6 leaked semaphore objects to clean up at shutdown
warnings.warn('resource_tracker: There appear to be %d '
Traceback (most recent call last):
File "/home/dje/cpython-buildarea/3.10.edelsohn-rhel8-z.refleak/build/Lib/multiprocessing/util.py", line 300, in _run_finalizers
finalizer()
File "/home/dje/cpython-buildarea/3.10.edelsohn-rhel8-z.refleak/build/Lib/multiprocessing/util.py", line 224, in __call__
res = self._callback(*self._args, **self._kwargs)
File "/home/dje/cpython-buildarea/3.10.edelsohn-rhel8-z.refleak/build/Lib/multiprocessing/synchronize.py", line 87, in _cleanup
sem_unlink(name)
FileNotFoundError: [Errno 2] No such file or directory
Traceback (most recent call last):
File "/home/dje/cpython-buildarea/3.10.edelsohn-rhel8-z.refleak/build/Lib/multiprocessing/util.py", line 300, in _run_finalizers
finalizer()
File "/home/dje/cpython-buildarea/3.10.edelsohn-rhel8-z.refleak/build/Lib/multiprocessing/util.py", line 224, in __call__
res = self._callback(*self._args, **self._kwargs)
File "/home/dje/cpython-buildarea/3.10.edelsohn-rhel8-z.refleak/build/Lib/multiprocessing/synchronize.py", line 87, in _cleanup
sem_unlink(name)
FileNotFoundError: [Errno 2] No such file or directory
Traceback (most recent call last):
File "/home/dje/cpython-buildarea/3.10.edelsohn-rhel8-z.refleak/build/Lib/multiprocessing/util.py", line 300, in _run_finalizers
finalizer()
File "/home/dje/cpython-buildarea/3.10.edelsohn-rhel8-z.refleak/build/Lib/multiprocessing/util.py", line 224, in __call__
res = self._callback(*self._args, **self._kwargs)
File "/home/dje/cpython-buildarea/3.10.edelsohn-rhel8-z.refleak/build/Lib/multiprocessing/synchronize.py", line 87, in _cleanup
sem_unlink(name)
FileNotFoundError: [Errno 2] No such file or directory
Traceback (most recent call last):
File "/home/dje/cpython-buildarea/3.10.edelsohn-rhel8-z.refleak/build/Lib/multiprocessing/util.py", line 300, in _run_finalizers
finalizer()
File "/home/dje/cpython-buildarea/3.10.edelsohn-rhel8-z.refleak/build/Lib/multiprocessing/util.py", line 224, in __call__
res = self._callback(*self._args, **self._kwargs)
File "/home/dje/cpython-buildarea/3.10.edelsohn-rhel8-z.refleak/build/Lib/multiprocessing/synchronize.py", line 87, in _cleanup
sem_unlink(name)
FileNotFoundError: [Errno 2] No such file or directory
Traceback (most recent call last):
File "/home/dje/cpython-buildarea/3.10.edelsohn-rhel8-z.refleak/build/Lib/multiprocessing/util.py", line 300, in _run_finalizers
finalizer()
File "/home/dje/cpython-buildarea/3.10.edelsohn-rhel8-z.refleak/build/Lib/multiprocessing/util.py", line 224, in __call__
res = self._callback(*self._args, **self._kwargs)
File "/home/dje/cpython-buildarea/3.10.edelsohn-rhel8-z.refleak/build/Lib/multiprocessing/synchronize.py", line 87, in _cleanup
sem_unlink(name)
FileNotFoundError: [Errno 2] No such file or directory
Traceback (most recent call last):
File "/home/dje/cpython-buildarea/3.10.edelsohn-rhel8-z.refleak/build/Lib/multiprocessing/util.py", line 300, in _run_finalizers
finalizer()
File "/home/dje/cpython-buildarea/3.10.edelsohn-rhel8-z.refleak/build/Lib/multiprocessing/util.py", line 224, in __call__
res = self._callback(*self._args, **self._kwargs)
File "/home/dje/cpython-buildarea/3.10.edelsohn-rhel8-z.refleak/build/Lib/multiprocessing/synchronize.py", line 87, in _cleanup
sem_unlink(name)
FileNotFoundError: [Errno 2] No such file or directory
./home/dje/cpython-buildarea/3.10.edelsohn-rhel8-z.refleak/build/Lib/multiprocessing/resource_tracker.py:224: UserWarning: resource_tracker: There appear to be 6 leaked semaphore objects to clean up at shutdown
warnings.warn('resource_tracker: There appear to be %d '
Traceback (most recent call last):
File "/home/dje/cpython-buildarea/3.10.edelsohn-rhel8-z.refleak/build/Lib/multiprocessing/util.py", line 300, in _run_finalizers
finalizer()
File "/home/dje/cpython-buildarea/3.10.edelsohn-rhel8-z.refleak/build/Lib/multiprocessing/util.py", line 224, in __call__
res = self._callback(*self._args, **self._kwargs)
File "/home/dje/cpython-buildarea/3.10.edelsohn-rhel8-z.refleak/build/Lib/multiprocessing/synchronize.py", line 87, in _cleanup
sem_unlink(name)
FileNotFoundError: [Errno 2] No such file or directory
Traceback (most recent call last):
File "/home/dje/cpython-buildarea/3.10.edelsohn-rhel8-z.refleak/build/Lib/multiprocessing/util.py", line 300, in _run_finalizers
finalizer()
File "/home/dje/cpython-buildarea/3.10.edelsohn-rhel8-z.refleak/build/Lib/multiprocessing/util.py", line 224, in __call__
res = self._callback(*self._args, **self._kwargs)
File "/home/dje/cpython-buildarea/3.10.edelsohn-rhel8-z.refleak/build/Lib/multiprocessing/synchronize.py", line 87, in _cleanup
sem_unlink(name)
FileNotFoundError: [Errno 2] No such file or directory
Traceback (most recent call last):
File "/home/dje/cpython-buildarea/3.10.edelsohn-rhel8-z.refleak/build/Lib/multiprocessing/util.py", line 300, in _run_finalizers
finalizer()
File "/home/dje/cpython-buildarea/3.10.edelsohn-rhel8-z.refleak/build/Lib/multiprocessing/util.py", line 224, in __call__
res = self._callback(*self._args, **self._kwargs)
File "/home/dje/cpython-buildarea/3.10.edelsohn-rhel8-z.refleak/build/Lib/multiprocessing/synchronize.py", line 87, in _cleanup
sem_unlink(name)
FileNotFoundError: [Errno 2] No such file or directory
Traceback (most recent call last):
File "/home/dje/cpython-buildarea/3.10.edelsohn-rhel8-z.refleak/build/Lib/multiprocessing/util.py", line 300, in _run_finalizers
finalizer()
File "/home/dje/cpython-buildarea/3.10.edelsohn-rhel8-z.refleak/build/Lib/multiprocessing/util.py", line 224, in __call__
res = self._callback(*self._args, **self._kwargs)
File "/home/dje/cpython-buildarea/3.10.edelsohn-rhel8-z.refleak/build/Lib/multiprocessing/synchronize.py", line 87, in _cleanup
sem_unlink(name)
FileNotFoundError: [Errno 2] No such file or directory
Traceback (most recent call last):
File "/home/dje/cpython-buildarea/3.10.edelsohn-rhel8-z.refleak/build/Lib/multiprocessing/util.py", line 300, in _run_finalizers
finalizer()
File "/home/dje/cpython-buildarea/3.10.edelsohn-rhel8-z.refleak/build/Lib/multiprocessing/util.py", line 224, in __call__
res = self._callback(*self._args, **self._kwargs)
File "/home/dje/cpython-buildarea/3.10.edelsohn-rhel8-z.refleak/build/Lib/multiprocessing/synchronize.py", line 87, in _cleanup
sem_unlink(name)
FileNotFoundError: [Errno 2] No such file or directory
Traceback (most recent call last):
File "/home/dje/cpython-buildarea/3.10.edelsohn-rhel8-z.refleak/build/Lib/multiprocessing/util.py", line 300, in _run_finalizers
finalizer()
File "/home/dje/cpython-buildarea/3.10.edelsohn-rhel8-z.refleak/build/Lib/multiprocessing/util.py", line 224, in __call__
res = self._callback(*self._args, **self._kwargs)
File "/home/dje/cpython-buildarea/3.10.edelsohn-rhel8-z.refleak/build/Lib/multiprocessing/synchronize.py", line 87, in _cleanup
sem_unlink(name)
FileNotFoundError: [Errno 2] No such file or directory
./home/dje/cpython-buildarea/3.10.edelsohn-rhel8-z.refleak/build/Lib/multiprocessing/resource_tracker.py:224: UserWarning: resource_tracker: There appear to be 6 leaked semaphore objects to clean up at shutdown
warnings.warn('resource_tracker: There appear to be %d '
Traceback (most recent call last):
File "/home/dje/cpython-buildarea/3.10.edelsohn-rhel8-z.refleak/build/Lib/multiprocessing/util.py", line 300, in _run_finalizers
finalizer()
File "/home/dje/cpython-buildarea/3.10.edelsohn-rhel8-z.refleak/build/Lib/multiprocessing/util.py", line 224, in __call__
res = self._callback(*self._args, **self._kwargs)
File "/home/dje/cpython-buildarea/3.10.edelsohn-rhel8-z.refleak/build/Lib/multiprocessing/synchronize.py", line 87, in _cleanup
sem_unlink(name)
FileNotFoundError: [Errno 2] No such file or directory
Traceback (most recent call last):
File "/home/dje/cpython-buildarea/3.10.edelsohn-rhel8-z.refleak/build/Lib/multiprocessing/util.py", line 300, in _run_finalizers
finalizer()
File "/home/dje/cpython-buildarea/3.10.edelsohn-rhel8-z.refleak/build/Lib/multiprocessing/util.py", line 224, in __call__
res = self._callback(*self._args, **self._kwargs)
File "/home/dje/cpython-buildarea/3.10.edelsohn-rhel8-z.refleak/build/Lib/multiprocessing/synchronize.py", line 87, in _cleanup
sem_unlink(name)
FileNotFoundError: [Errno 2] No such file or directory
Traceback (most recent call last):
File "/home/dje/cpython-buildarea/3.10.edelsohn-rhel8-z.refleak/build/Lib/multiprocessing/util.py", line 300, in _run_finalizers
finalizer()
File "/home/dje/cpython-buildarea/3.10.edelsohn-rhel8-z.refleak/build/Lib/multiprocessing/util.py", line 224, in __call__
res = self._callback(*self._args, **self._kwargs)
File "/home/dje/cpython-buildarea/3.10.edelsohn-rhel8-z.refleak/build/Lib/multiprocessing/synchronize.py", line 87, in _cleanup
sem_unlink(name)
FileNotFoundError: [Errno 2] No such file or directory
Traceback (most recent call last):
File "/home/dje/cpython-buildarea/3.10.edelsohn-rhel8-z.refleak/build/Lib/multiprocessing/util.py", line 300, in _run_finalizers
finalizer()
File "/home/dje/cpython-buildarea/3.10.edelsohn-rhel8-z.refleak/build/Lib/multiprocessing/util.py", line 224, in __call__
res = self._callback(*self._args, **self._kwargs)
File "/home/dje/cpython-buildarea/3.10.edelsohn-rhel8-z.refleak/build/Lib/multiprocessing/synchronize.py", line 87, in _cleanup
sem_unlink(name)
FileNotFoundError: [Errno 2] No such file or directory
Traceback (most recent call last):
File "/home/dje/cpython-buildarea/3.10.edelsohn-rhel8-z.refleak/build/Lib/multiprocessing/util.py", line 300, in _run_finalizers
finalizer()
File "/home/dje/cpython-buildarea/3.10.edelsohn-rhel8-z.refleak/build/Lib/multiprocessing/util.py", line 224, in __call__
res = self._callback(*self._args, **self._kwargs)
File "/home/dje/cpython-buildarea/3.10.edelsohn-rhel8-z.refleak/build/Lib/multiprocessing/synchronize.py", line 87, in _cleanup
sem_unlink(name)
FileNotFoundError: [Errno 2] No such file or directory
Traceback (most recent call last):
File "/home/dje/cpython-buildarea/3.10.edelsohn-rhel8-z.refleak/build/Lib/multiprocessing/util.py", line 300, in _run_finalizers
finalizer()
File "/home/dje/cpython-buildarea/3.10.edelsohn-rhel8-z.refleak/build/Lib/multiprocessing/util.py", line 224, in __call__
res = self._callback(*self._args, **self._kwargs)
File "/home/dje/cpython-buildarea/3.10.edelsohn-rhel8-z.refleak/build/Lib/multiprocessing/synchronize.py", line 87, in _cleanup
sem_unlink(name)
FileNotFoundError: [Errno 2] No such file or directory
./home/dje/cpython-buildarea/3.10.edelsohn-rhel8-z.refleak/build/Lib/multiprocessing/resource_tracker.py:224: UserWarning: resource_tracker: There appear to be 6 leaked semaphore objects to clean up at shutdown
warnings.warn('resource_tracker: There appear to be %d '
Traceback (most recent call last):
File "/home/dje/cpython-buildarea/3.10.edelsohn-rhel8-z.refleak/build/Lib/multiprocessing/util.py", line 300, in _run_finalizers
finalizer()
File "/home/dje/cpython-buildarea/3.10.edelsohn-rhel8-z.refleak/build/Lib/multiprocessing/util.py", line 224, in __call__
res = self._callback(*self._args, **self._kwargs)
File "/home/dje/cpython-buildarea/3.10.edelsohn-rhel8-z.refleak/build/Lib/multiprocessing/synchronize.py", line 87, in _cleanup
sem_unlink(name)
FileNotFoundError: [Errno 2] No such file or directory
Traceback (most recent call last):
File "/home/dje/cpython-buildarea/3.10.edelsohn-rhel8-z.refleak/build/Lib/multiprocessing/util.py", line 300, in _run_finalizers
finalizer()
File "/home/dje/cpython-buildarea/3.10.edelsohn-rhel8-z.refleak/build/Lib/multiprocessing/util.py", line 224, in __call__
res = self._callback(*self._args, **self._kwargs)
File "/home/dje/cpython-buildarea/3.10.edelsohn-rhel8-z.refleak/build/Lib/multiprocessing/synchronize.py", line 87, in _cleanup
sem_unlink(name)
FileNotFoundError: [Errno 2] No such file or directory
Traceback (most recent call last):
File "/home/dje/cpython-buildarea/3.10.edelsohn-rhel8-z.refleak/build/Lib/multiprocessing/util.py", line 300, in _run_finalizers
finalizer()
File "/home/dje/cpython-buildarea/3.10.edelsohn-rhel8-z.refleak/build/Lib/multiprocessing/util.py", line 224, in __call__
res = self._callback(*self._args, **self._kwargs)
File "/home/dje/cpython-buildarea/3.10.edelsohn-rhel8-z.refleak/build/Lib/multiprocessing/synchronize.py", line 87, in _cleanup
sem_unlink(name)
FileNotFoundError: [Errno 2] No such file or directory
Traceback (most recent call last):
File "/home/dje/cpython-buildarea/3.10.edelsohn-rhel8-z.refleak/build/Lib/multiprocessing/util.py", line 300, in _run_finalizers
finalizer()
File "/home/dje/cpython-buildarea/3.10.edelsohn-rhel8-z.refleak/build/Lib/multiprocessing/util.py", line 224, in __call__
res = self._callback(*self._args, **self._kwargs)
File "/home/dje/cpython-buildarea/3.10.edelsohn-rhel8-z.refleak/build/Lib/multiprocessing/synchronize.py", line 87, in _cleanup
sem_unlink(name)
FileNotFoundError: [Errno 2] No such file or directory
Traceback (most recent call last):
File "/home/dje/cpython-buildarea/3.10.edelsohn-rhel8-z.refleak/build/Lib/multiprocessing/util.py", line 300, in _run_finalizers
finalizer()
File "/home/dje/cpython-buildarea/3.10.edelsohn-rhel8-z.refleak/build/Lib/multiprocessing/util.py", line 224, in __call__
res = self._callback(*self._args, **self._kwargs)
File "/home/dje/cpython-buildarea/3.10.edelsohn-rhel8-z.refleak/build/Lib/multiprocessing/synchronize.py", line 87, in _cleanup
sem_unlink(name)
FileNotFoundError: [Errno 2] No such file or directory
Traceback (most recent call last):
File "/home/dje/cpython-buildarea/3.10.edelsohn-rhel8-z.refleak/build/Lib/multiprocessing/util.py", line 300, in _run_finalizers
finalizer()
File "/home/dje/cpython-buildarea/3.10.edelsohn-rhel8-z.refleak/build/Lib/multiprocessing/util.py", line 224, in __call__
res = self._callback(*self._args, **self._kwargs)
File "/home/dje/cpython-buildarea/3.10.edelsohn-rhel8-z.refleak/build/Lib/multiprocessing/synchronize.py", line 87, in _cleanup
sem_unlink(name)
FileNotFoundError: [Errno 2] No such file or directory
.
Test report
===========
Sincerely,
-The Buildbot
1
0
The Buildbot has detected a new failure on builder AMD64 Windows8.1 Refleaks 3.x while building Python.
Full details are available at:
https://buildbot.python.org/all/#builders/511/builds/36
Buildbot URL: https://buildbot.python.org/all/
Worker for this Build: ware-win81-release
Build Reason: <unknown>
Blamelist:
BUILD FAILED: failed test (failure)
Summary of the results of the build (if available):
===================================================
== Tests result: FAILURE then SUCCESS ==
396 tests OK.
10 slowest tests:
- test_pydoc: 31 min 28 sec
- test_asyncio: 26 min 59 sec
- test_concurrent_futures: 15 min 59 sec
- test_multiprocessing_spawn: 15 min 32 sec
- test_peg_generator: 10 min 46 sec
- test_compileall: 10 min 33 sec
- test_venv: 10 min 9 sec
- test_largefile: 9 min 43 sec
- test_io: 8 min 46 sec
- test_regrtest: 8 min 10 sec
31 tests skipped:
test_curses test_dbm_gnu test_dbm_ndbm test_devpoll test_epoll
test_fcntl test_fork1 test_gdb test_grp test_ioctl test_kqueue
test_multiprocessing_fork test_multiprocessing_forkserver test_nis
test_openpty test_ossaudiodev test_pipes test_poll test_posix
test_pty test_pwd test_readline test_resource test_spwd
test_syslog test_threadsignals test_wait3 test_wait4
test_xxlimited test_xxtestfuzz test_zipfile64
1 re-run test:
test_threading
Total duration: 3 hour 28 min
Captured traceback
==================
remote: Enumerating objects: 30, done.
remote: Counting objects: 3% (1/30)
remote: Counting objects: 6% (2/30)
remote: Counting objects: 10% (3/30)
remote: Counting objects: 13% (4/30)
remote: Counting objects: 16% (5/30)
remote: Counting objects: 20% (6/30)
remote: Counting objects: 23% (7/30)
remote: Counting objects: 26% (8/30)
remote: Counting objects: 30% (9/30)
remote: Counting objects: 33% (10/30)
remote: Counting objects: 36% (11/30)
remote: Counting objects: 40% (12/30)
remote: Counting objects: 43% (13/30)
remote: Counting objects: 46% (14/30)
remote: Counting objects: 50% (15/30)
remote: Counting objects: 53% (16/30)
remote: Counting objects: 56% (17/30)
remote: Counting objects: 60% (18/30)
remote: Counting objects: 63% (19/30)
remote: Counting objects: 66% (20/30)
remote: Counting objects: 70% (21/30)
remote: Counting objects: 73% (22/30)
remote: Counting objects: 76% (23/30)
remote: Counting objects: 80% (24/30)
remote: Counting objects: 83% (25/30)
remote: Counting objects: 86% (26/30)
remote: Counting objects: 90% (27/30)
remote: Counting objects: 93% (28/30)
remote: Counting objects: 96% (29/30)
remote: Counting objects: 100% (30/30)
remote: Counting objects: 100% (30/30), done.
remote: Compressing objects: 7% (1/14)
remote: Compressing objects: 14% (2/14)
remote: Compressing objects: 21% (3/14)
remote: Compressing objects: 28% (4/14)
remote: Compressing objects: 35% (5/14)
remote: Compressing objects: 42% (6/14)
remote: Compressing objects: 50% (7/14)
remote: Compressing objects: 57% (8/14)
remote: Compressing objects: 64% (9/14)
remote: Compressing objects: 71% (10/14)
remote: Compressing objects: 78% (11/14)
remote: Compressing objects: 85% (12/14)
remote: Compressing objects: 92% (13/14)
remote: Compressing objects: 100% (14/14)
remote: Compressing objects: 100% (14/14), done.
remote: Total 16 (delta 14), reused 3 (delta 2), pack-reused 0
From https://github.com/python/cpython
* branch main -> FETCH_HEAD
Note: checking out 'FETCH_HEAD'.
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 performing another checkout.
If you want to create a new branch to retain commits you create, you may
do so (now or later) by using -b with the checkout command again. Example:
git checkout -b <new-branch-name>
HEAD is now at 14ba761... bpo-44235: Remove deprecated functions in the gettext module. (GH-26378)
Switched to and reset branch 'main'
Could Not Find D:\buildarea\3.x.ware-win81-release.refleak\build\Lib\*.pyc
The system cannot find the file specified.
Could Not Find D:\buildarea\3.x.ware-win81-release.refleak\build\PCbuild\python*.zip
WARNING: Disable --verbose3 because it's incompatible with --huntrleaks: see http://bugs.python.org/issue27103
beginning 6 repetitions
123456
......
beginning 6 repetitions
123456
......
beginning 6 repetitions
123456
......
beginning 6 repetitions
123456
......
beginning 6 repetitions
123456
......
beginning 6 repetitions
123456
......
beginning 6 repetitions
123456
......
beginning 6 repetitions
123456
......
beginning 6 repetitions
123456
......
beginning 6 repetitions
123456
......
beginning 6 repetitions
123456
......
beginning 6 repetitions
123456
......
beginning 6 repetitions
123456
......
beginning 6 repetitions
123456
......
beginning 6 repetitions
123456
......
beginning 6 repetitions
123456
......
beginning 6 repetitions
123456
......
beginning 6 repetitions
123456
......
beginning 6 repetitions
123456
......
beginning 6 repetitions
123456
......
beginning 6 repetitions
123456
......
beginning 6 repetitions
123456
......
beginning 6 repetitions
123456
......
beginning 6 repetitions
123456
......
beginning 6 repetitions
123456
......
beginning 6 repetitions
123456
......
beginning 6 repetitions
123456
......
beginning 6 repetitions
123456
......
beginning 6 repetitions
123456
......
beginning 6 repetitions
123456
<frozen importlib._bootstrap>:671: ImportWarning: TestImporter.exec_module() not found; falling back to load_module()
.<frozen importlib._bootstrap>:671: ImportWarning: TestImporter.exec_module() not found; falling back to load_module()
.<frozen importlib._bootstrap>:671: ImportWarning: TestImporter.exec_module() not found; falling back to load_module()
.<frozen importlib._bootstrap>:671: ImportWarning: TestImporter.exec_module() not found; falling back to load_module()
.<frozen importlib._bootstrap>:671: ImportWarning: TestImporter.exec_module() not found; falling back to load_module()
.<frozen importlib._bootstrap>:671: ImportWarning: TestImporter.exec_module() not found; falling back to load_module()
.
beginning 6 repetitions
123456
......
beginning 6 repetitions
123456
......
beginning 6 repetitions
123456
......
beginning 6 repetitions
123456
......
beginning 6 repetitions
123456
......
beginning 6 repetitions
123456
Task was destroyed but it is pending!
task: <Task pending name='Task-12' coro=<<async_generator_athrow without __name__>()>>
Task was destroyed but it is pending!
task: <Task pending name='Task-14' coro=<<async_generator_athrow without __name__>()>>
Task was destroyed but it is pending!
task: <Task pending name='Task-20' coro=<<async_generator_athrow without __name__>()>>
.Task was destroyed but it is pending!
task: <Task pending name='Task-76' coro=<<async_generator_athrow without __name__>()>>
Task was destroyed but it is pending!
task: <Task pending name='Task-78' coro=<<async_generator_athrow without __name__>()>>
Task was destroyed but it is pending!
task: <Task pending name='Task-84' coro=<<async_generator_athrow without __name__>()>>
.Task was destroyed but it is pending!
task: <Task pending name='Task-140' coro=<<async_generator_athrow without __name__>()>>
Task was destroyed but it is pending!
task: <Task pending name='Task-142' coro=<<async_generator_athrow without __name__>()>>
Task was destroyed but it is pending!
task: <Task pending name='Task-148' coro=<<async_generator_athrow without __name__>()>>
.Task was destroyed but it is pending!
task: <Task pending name='Task-204' coro=<<async_generator_athrow without __name__>()>>
Task was destroyed but it is pending!
task: <Task pending name='Task-206' coro=<<async_generator_athrow without __name__>()>>
Task was destroyed but it is pending!
task: <Task pending name='Task-212' coro=<<async_generator_athrow without __name__>()>>
.Task was destroyed but it is pending!
task: <Task pending name='Task-268' coro=<<async_generator_athrow without __name__>()>>
Task was destroyed but it is pending!
task: <Task pending name='Task-270' coro=<<async_generator_athrow without __name__>()>>
Task was destroyed but it is pending!
task: <Task pending name='Task-276' coro=<<async_generator_athrow without __name__>()>>
.Task was destroyed but it is pending!
task: <Task pending name='Task-332' coro=<<async_generator_athrow without __name__>()>>
Task was destroyed but it is pending!
task: <Task pending name='Task-334' coro=<<async_generator_athrow without __name__>()>>
Task was destroyed but it is pending!
task: <Task pending name='Task-340' coro=<<async_generator_athrow without __name__>()>>
.
beginning 6 repetitions
123456
......
beginning 6 repetitions
123456
......
beginning 6 repetitions
123456
......
beginning 6 repetitions
123456
......
beginning 6 repetitions
123456
......
beginning 6 repetitions
123456
......
beginning 6 repetitions
123456
......
beginning 6 repetitions
123456
can't invoke "event" command: application has been destroyed
while executing
"event generate $w <<ThemeChanged>>"
(procedure "ttk::ThemeChanged" line 6)
invoked from within
"ttk::ThemeChanged"
can't invoke "event" command: application has been destroyed
while executing
"event generate $w <<ThemeChanged>>"
(procedure "ttk::ThemeChanged" line 6)
invoked from within
"ttk::ThemeChanged"
can't invoke "event" command: application has been destroyed
while executing
"event generate $w <<ThemeChanged>>"
(procedure "ttk::ThemeChanged" line 6)
invoked from within
"ttk::ThemeChanged"
.can't invoke "event" command: application has been destroyed
while executing
"event generate $w <<ThemeChanged>>"
(procedure "ttk::ThemeChanged" line 6)
invoked from within
"ttk::ThemeChanged"
can't invoke "event" command: application has been destroyed
while executing
"event generate $w <<ThemeChanged>>"
(procedure "ttk::ThemeChanged" line 6)
invoked from within
"ttk::ThemeChanged"
can't invoke "event" command: application has been destroyed
while executing
"event generate $w <<ThemeChanged>>"
(procedure "ttk::ThemeChanged" line 6)
invoked from within
"ttk::ThemeChanged"
.can't invoke "event" command: application has been destroyed
while executing
"event generate $w <<ThemeChanged>>"
(procedure "ttk::ThemeChanged" line 6)
invoked from within
"ttk::ThemeChanged"
can't invoke "event" command: application has been destroyed
while executing
"event generate $w <<ThemeChanged>>"
(procedure "ttk::ThemeChanged" line 6)
invoked from within
"ttk::ThemeChanged"
can't invoke "event" command: application has been destroyed
while executing
"event generate $w <<ThemeChanged>>"
(procedure "ttk::ThemeChanged" line 6)
invoked from within
"ttk::ThemeChanged"
.can't invoke "event" command: application has been destroyed
while executing
"event generate $w <<ThemeChanged>>"
(procedure "ttk::ThemeChanged" line 6)
invoked from within
"ttk::ThemeChanged"
can't invoke "event" command: application has been destroyed
while executing
"event generate $w <<ThemeChanged>>"
(procedure "ttk::ThemeChanged" line 6)
invoked from within
"ttk::ThemeChanged"
can't invoke "event" command: application has been destroyed
while executing
"event generate $w <<ThemeChanged>>"
(procedure "ttk::ThemeChanged" line 6)
invoked from within
"ttk::ThemeChanged"
.can't invoke "event" command: application has been destroyed
while executing
"event generate $w <<ThemeChanged>>"
(procedure "ttk::ThemeChanged" line 6)
invoked from within
"ttk::ThemeChanged"
can't invoke "event" command: application has been destroyed
while executing
"event generate $w <<ThemeChanged>>"
(procedure "ttk::ThemeChanged" line 6)
invoked from within
"ttk::ThemeChanged"
can't invoke "event" command: application has been destroyed
while executing
"event generate $w <<ThemeChanged>>"
(procedure "ttk::ThemeChanged" line 6)
invoked from within
"ttk::ThemeChanged"
.can't invoke "event" command: application has been destroyed
while executing
"event generate $w <<ThemeChanged>>"
(procedure "ttk::ThemeChanged" line 6)
invoked from within
"ttk::ThemeChanged"
can't invoke "event" command: application has been destroyed
while executing
"event generate $w <<ThemeChanged>>"
(procedure "ttk::ThemeChanged" line 6)
invoked from within
"ttk::ThemeChanged"
can't invoke "event" command: application has been destroyed
while executing
"event generate $w <<ThemeChanged>>"
(procedure "ttk::ThemeChanged" line 6)
invoked from within
"ttk::ThemeChanged"
.
beginning 6 repetitions
123456
......
beginning 6 repetitions
123456
......
beginning 6 repetitions
123456
......
beginning 6 repetitions
123456
......
beginning 6 repetitions
123456
......
beginning 6 repetitions
123456
......
beginning 6 repetitions
123456
......
beginning 6 repetitions
123456
......
beginning 6 repetitions
123456
......
beginning 6 repetitions
123456
......
beginning 6 repetitions
123456
......
beginning 6 repetitions
123456
......
beginning 6 repetitions
123456
......
beginning 6 repetitions
123456
......
beginning 6 repetitions
123456
......
beginning 6 repetitions
123456
......
beginning 6 repetitions
123456
......
beginning 6 repetitions
123456
......
beginning 6 repetitions
123456
......
beginning 6 repetitions
123456
......
beginning 6 repetitions
123456
......
beginning 6 repetitions
123456
......
beginning 6 repetitions
123456
......
beginning 6 repetitions
123456
......
beginning 6 repetitions
123456
......
beginning 6 repetitions
123456
......
beginning 6 repetitions
123456
......
beginning 6 repetitions
123456
......
beginning 6 repetitions
123456
......
beginning 6 repetitions
123456
......
beginning 6 repetitions
123456
......
beginning 6 repetitions
123456
......
beginning 6 repetitions
123456
......
beginning 6 repetitions
123456
......
beginning 6 repetitions
123456
......
beginning 6 repetitions
123456
......
beginning 6 repetitions
123456
Resource 'ipv6.google.com' is not available
.Resource 'ipv6.google.com' is not available
.Resource 'ipv6.google.com' is not available
.Resource 'ipv6.google.com' is not available
.Resource 'ipv6.google.com' is not available
.Resource 'ipv6.google.com' is not available
.
beginning 6 repetitions
123456
......
beginning 6 repetitions
123456
......
beginning 6 repetitions
123456
......
beginning 6 repetitions
123456
......
beginning 6 repetitions
123456
......
beginning 6 repetitions
123456
......
beginning 6 repetitions
123456
......
beginning 6 repetitions
123456
......
beginning 6 repetitions
123456
......
beginning 6 repetitions
123456
......
beginning 6 repetitions
123456
......
beginning 6 repetitions
123456
......
beginning 6 repetitions
123456
......
beginning 6 repetitions
123456
......
beginning 6 repetitions
123456
......
beginning 6 repetitions
123456
......
beginning 6 repetitions
123456
......
beginning 6 repetitions
123456
......
beginning 6 repetitions
123456
......
beginning 6 repetitions
123456
......
beginning 6 repetitions
123456
......
beginning 6 repetitions
123456
......
beginning 6 repetitions
123456
......
beginning 6 repetitions
123456
......
beginning 6 repetitions
123456
......
beginning 6 repetitions
123456
......
beginning 6 repetitions
123456
......
beginning 6 repetitions
123456
......
beginning 6 repetitions
123456
......
beginning 6 repetitions
123456
......
beginning 6 repetitions
123456
......
beginning 6 repetitions
123456
......
beginning 6 repetitions
123456
......
beginning 6 repetitions
123456
......
beginning 6 repetitions
123456
......
beginning 6 repetitions
123456
......
beginning 6 repetitions
123456
......
beginning 6 repetitions
123456
......
beginning 6 repetitions
123456
minkernel\crts\ucrt\src\appcrt\lowio\write.cpp(49) : Assertion failed: (_osfile(fh) & FOPEN)
.minkernel\crts\ucrt\src\appcrt\lowio\write.cpp(49) : Assertion failed: (_osfile(fh) & FOPEN)
.minkernel\crts\ucrt\src\appcrt\lowio\write.cpp(49) : Assertion failed: (_osfile(fh) & FOPEN)
.minkernel\crts\ucrt\src\appcrt\lowio\write.cpp(49) : Assertion failed: (_osfile(fh) & FOPEN)
.minkernel\crts\ucrt\src\appcrt\lowio\write.cpp(49) : Assertion failed: (_osfile(fh) & FOPEN)
.minkernel\crts\ucrt\src\appcrt\lowio\write.cpp(49) : Assertion failed: (_osfile(fh) & FOPEN)
.
beginning 6 repetitions
123456
......
beginning 6 repetitions
123456
......
beginning 6 repetitions
123456
......
beginning 6 repetitions
123456
......
beginning 6 repetitions
123456
......
beginning 6 repetitions
123456
......
beginning 6 repetitions
123456
......
beginning 6 repetitions
123456
......
beginning 6 repetitions
123456
......
beginning 6 repetitions
123456
......
beginning 6 repetitions
123456
......
beginning 6 repetitions
123456
......
beginning 6 repetitions
123456
......
beginning 6 repetitions
123456
......
beginning 6 repetitions
123456
......
beginning 6 repetitions
123456
......
beginning 6 repetitions
123456
......
beginning 6 repetitions
123456
......
beginning 6 repetitions
123456
......
beginning 6 repetitions
123456
......
beginning 6 repetitions
123456
......
beginning 6 repetitions
123456
......
beginning 6 repetitions
123456
......
beginning 6 repetitions
123456
......
beginning 6 repetitions
123456
......
beginning 6 repetitions
123456
......
beginning 6 repetitions
123456
......
beginning 6 repetitions
123456
......
beginning 6 repetitions
123456
......
beginning 6 repetitions
123456
......
beginning 6 repetitions
123456
......
beginning 6 repetitions
123456
......
beginning 6 repetitions
123456
......
beginning 6 repetitions
123456
......
beginning 6 repetitions
123456
......
beginning 6 repetitions
123456
......
beginning 6 repetitions
123456
......
beginning 6 repetitions
123456
......
beginning 6 repetitions
123456
D:\buildarea\3.x.ware-win81-release.refleak\build\lib\test\test_asyncio\test_windows_events.py:48: DeprecationWarning: There is no current event loop
loop = asyncio.get_event_loop()
.D:\buildarea\3.x.ware-win81-release.refleak\build\lib\test\test_asyncio\test_windows_events.py:48: DeprecationWarning: There is no current event loop
loop = asyncio.get_event_loop()
.D:\buildarea\3.x.ware-win81-release.refleak\build\lib\test\test_asyncio\test_windows_events.py:48: DeprecationWarning: There is no current event loop
loop = asyncio.get_event_loop()
.D:\buildarea\3.x.ware-win81-release.refleak\build\lib\test\test_asyncio\test_windows_events.py:48: DeprecationWarning: There is no current event loop
loop = asyncio.get_event_loop()
.D:\buildarea\3.x.ware-win81-release.refleak\build\lib\test\test_asyncio\test_windows_events.py:48: DeprecationWarning: There is no current event loop
loop = asyncio.get_event_loop()
.D:\buildarea\3.x.ware-win81-release.refleak\build\lib\test\test_asyncio\test_windows_events.py:48: DeprecationWarning: There is no current event loop
loop = asyncio.get_event_loop()
.
beginning 6 repetitions
123456
......
beginning 6 repetitions
123456
......
beginning 6 repetitions
123456
......
beginning 6 repetitions
123456
......
beginning 6 repetitions
123456
......
beginning 6 repetitions
123456
......
beginning 6 repetitions
123456
......
beginning 6 repetitions
123456
......
beginning 6 repetitions
123456
......
beginning 6 repetitions
123456
......
beginning 6 repetitions
123456
......
beginning 6 repetitions
123456
......
beginning 6 repetitions
123456
D:\buildarea\3.x.ware-win81-release.refleak\build\lib\test\test_peg_generator\test_c_parser.py:4: DeprecationWarning: The distutils package is deprecated and slated for removal in Python 3.12. Use setuptools or check PEP 632 for potential alternatives
from distutils.tests.support import TempdirManager
D:\buildarea\3.x.ware-win81-release.refleak\build\lib\test\support\__init__.py:1672: DeprecationWarning: The distutils.sysconfig module is deprecated, use sysconfig instead
from distutils import ccompiler, sysconfig, spawn, errors
......
beginning 6 repetitions
123456
......
beginning 6 repetitions
123456
......
beginning 6 repetitions
123456
......
beginning 6 repetitions
123456
......
beginning 6 repetitions
123456
......
beginning 6 repetitions
123456
......
beginning 6 repetitions
123456
......
beginning 6 repetitions
123456
......
beginning 6 repetitions
123456
......
beginning 6 repetitions
123456
......
beginning 6 repetitions
123456
......
beginning 6 repetitions
123456
......
beginning 6 repetitions
123456
......
beginning 6 repetitions
123456
......
beginning 6 repetitions
123456
......
beginning 6 repetitions
123456
......
beginning 6 repetitions
123456
......
beginning 6 repetitions
123456
......
beginning 6 repetitions
123456
......
beginning 6 repetitions
123456
......
beginning 6 repetitions
123456
......
beginning 6 repetitions
123456
......
beginning 6 repetitions
123456
......
beginning 6 repetitions
123456
......
beginning 6 repetitions
123456
......
beginning 6 repetitions
123456
......
beginning 6 repetitions
123456
......
beginning 6 repetitions
123456
D:\buildarea\3.x.ware-win81-release.refleak\build\lib\distutils\command\bdist_dumb.py:12: DeprecationWarning: The distutils.sysconfig module is deprecated, use sysconfig instead
from distutils.sysconfig import get_python_version
D:\buildarea\3.x.ware-win81-release.refleak\build\lib\distutils\dist.py:858: DeprecationWarning: bdist_msi command is deprecated since Python 3.9, use bdist_wheel (wheel packages) instead
cmd_obj = self.command_obj[command] = klass(self)
.D:\buildarea\3.x.ware-win81-release.refleak\build\lib\distutils\dist.py:858: DeprecationWarning: bdist_msi command is deprecated since Python 3.9, use bdist_wheel (wheel packages) instead
cmd_obj = self.command_obj[command] = klass(self)
.D:\buildarea\3.x.ware-win81-release.refleak\build\lib\distutils\dist.py:858: DeprecationWarning: bdist_msi command is deprecated since Python 3.9, use bdist_wheel (wheel packages) instead
cmd_obj = self.command_obj[command] = klass(self)
.D:\buildarea\3.x.ware-win81-release.refleak\build\lib\distutils\dist.py:858: DeprecationWarning: bdist_msi command is deprecated since Python 3.9, use bdist_wheel (wheel packages) instead
cmd_obj = self.command_obj[command] = klass(self)
.D:\buildarea\3.x.ware-win81-release.refleak\build\lib\distutils\dist.py:858: DeprecationWarning: bdist_msi command is deprecated since Python 3.9, use bdist_wheel (wheel packages) instead
cmd_obj = self.command_obj[command] = klass(self)
.D:\buildarea\3.x.ware-win81-release.refleak\build\lib\distutils\dist.py:858: DeprecationWarning: bdist_msi command is deprecated since Python 3.9, use bdist_wheel (wheel packages) instead
cmd_obj = self.command_obj[command] = klass(self)
.
beginning 6 repetitions
123456
......
beginning 6 repetitions
123456
......
beginning 6 repetitions
123456
......
beginning 6 repetitions
123456
......
beginning 6 repetitions
123456
......
beginning 6 repetitions
123456
......
beginning 6 repetitions
123456
......
beginning 6 repetitions
123456
......
beginning 6 repetitions
123456
......
beginning 6 repetitions
123456
......
beginning 6 repetitions
123456
......
beginning 6 repetitions
123456
......
beginning 6 repetitions
123456
......
beginning 6 repetitions
123456
......
beginning 6 repetitions
123456
......
beginning 6 repetitions
123456
......
beginning 6 repetitions
123456
......
beginning 6 repetitions
123456
......
beginning 6 repetitions
123456
......
beginning 6 repetitions
123456
......
beginning 6 repetitions
123456
......
beginning 6 repetitions
123456
......
beginning 6 repetitions
123456
......
beginning 6 repetitions
123456
......
beginning 6 repetitions
123456
......
beginning 6 repetitions
123456
......
beginning 6 repetitions
123456
......
beginning 6 repetitions
123456
......
beginning 6 repetitions
123456
......
beginning 6 repetitions
123456
......
beginning 6 repetitions
123456
......
beginning 6 repetitions
123456
......
beginning 6 repetitions
123456
......
beginning 6 repetitions
123456
......
D:\buildarea\3.x.ware-win81-release.refleak\build\Tools\c-analyzer\c_common\tables.py:236: FutureWarning: Possible nested set at position 12
_COLSPEC_RE = re.compile(textwrap.dedent(r'''
D:\buildarea\3.x.ware-win81-release.refleak\build\Tools\c-analyzer\c_parser\preprocessor\__init__.py:2: DeprecationWarning: The distutils package is deprecated and slated for removal in Python 3.12. Use setuptools or check PEP 632 for potential alternatives
import distutils.ccompiler
beginning 6 repetitions
123456
......
beginning 6 repetitions
123456
......
beginning 6 repetitions
123456
......
beginning 6 repetitions
123456
......
beginning 6 repetitions
123456
......
beginning 6 repetitions
123456
......
beginning 6 repetitions
123456
......
beginning 6 repetitions
123456
......
beginning 6 repetitions
123456
......
beginning 6 repetitions
123456
......
beginning 6 repetitions
123456
......
beginning 6 repetitions
123456
......
beginning 6 repetitions
123456
......
beginning 6 repetitions
123456
......
beginning 6 repetitions
123456
......
beginning 6 repetitions
123456
......
beginning 6 repetitions
123456
......
beginning 6 repetitions
123456
......
beginning 6 repetitions
123456
......
beginning 6 repetitions
123456
......
beginning 6 repetitions
123456
......
beginning 6 repetitions
123456
......
beginning 6 repetitions
123456
......
beginning 6 repetitions
123456
......
beginning 6 repetitions
123456
......
beginning 6 repetitions
123456
......
beginning 6 repetitions
123456
......
beginning 6 repetitions
123456
......
beginning 6 repetitions
123456
......
beginning 6 repetitions
123456
......
beginning 6 repetitions
123456
......
beginning 6 repetitions
123456
......
beginning 6 repetitions
123456
......
beginning 6 repetitions
123456
......
beginning 6 repetitions
123456
......
beginning 6 repetitions
123456
D:\buildarea\3.x.ware-win81-release.refleak\build\lib\test\test_pickle.py:370: DeprecationWarning: The Tix Tk extension is unmaintained, and the tkinter.tix wrapper module is deprecated in favor of tkinter.ttk
__import__(module)
......
beginning 6 repetitions
123456
......
beginning 6 repetitions
123456
......
beginning 6 repetitions
123456
......
beginning 6 repetitions
123456
......
beginning 6 repetitions
123456
......
beginning 6 repetitions
123456
......
beginning 6 repetitions
123456
......
beginning 6 repetitions
123456
......
beginning 6 repetitions
123456
......
beginning 6 repetitions
123456
......
beginning 6 repetitions
123456
......
beginning 6 repetitions
123456
......
beginning 6 repetitions
123456
......
beginning 6 repetitions
123456
......
beginning 6 repetitions
123456
......
beginning 6 repetitions
123456
......
beginning 6 repetitions
123456
......
beginning 6 repetitions
123456
......
beginning 6 repetitions
123456
......
beginning 6 repetitions
123456
......
beginning 6 repetitions
123456
......
beginning 6 repetitions
123456
......
beginning 6 repetitions
123456
......
beginning 6 repetitions
123456
......
beginning 6 repetitions
123456
......
beginning 6 repetitions
123456
......
beginning 6 repetitions
123456
......
beginning 6 repetitions
123456
......
beginning 6 repetitions
123456
......
beginning 6 repetitions
123456
......
beginning 6 repetitions
123456
......
beginning 6 repetitions
123456
......
beginning 6 repetitions
123456
......
beginning 6 repetitions
123456
......
beginning 6 repetitions
123456
......
beginning 6 repetitions
123456
......
beginning 6 repetitions
123456
......
beginning 6 repetitions
123456
......
beginning 6 repetitions
123456
......
beginning 6 repetitions
123456
......
beginning 6 repetitions
123456
......
beginning 6 repetitions
123456
......
beginning 6 repetitions
123456
......
beginning 6 repetitions
123456
......
beginning 6 repetitions
123456
......
beginning 6 repetitions
123456
......
beginning 6 repetitions
123456
......
beginning 6 repetitions
123456
......
beginning 6 repetitions
123456
......
beginning 6 repetitions
123456
......
beginning 6 repetitions
123456
......
beginning 6 repetitions
123456
......
beginning 6 repetitions
123456
......
beginning 6 repetitions
123456
......
beginning 6 repetitions
123456
......
beginning 6 repetitions
123456
......
beginning 6 repetitions
123456
......
beginning 6 repetitions
123456
......
beginning 6 repetitions
123456
......
beginning 6 repetitions
123456
......
beginning 6 repetitions
123456
......
beginning 6 repetitions
123456
......
beginning 6 repetitions
123456
......
beginning 6 repetitions
123456
......
beginning 6 repetitions
123456
......
beginning 6 repetitions
123456
......
beginning 6 repetitions
123456
......
beginning 6 repetitions
123456
......
beginning 6 repetitions
123456
......
beginning 6 repetitions
123456
......
beginning 6 repetitions
123456
......
beginning 6 repetitions
123456
......
beginning 6 repetitions
123456
......
beginning 6 repetitions
123456
......
beginning 6 repetitions
123456
......
beginning 6 repetitions
123456
......
beginning 6 repetitions
123456
......
beginning 6 repetitions
123456
......
beginning 6 repetitions
123456
......
beginning 6 repetitions
123456
......
beginning 6 repetitions
123456
......
beginning 6 repetitions
123456
......
beginning 6 repetitions
123456
......
beginning 6 repetitions
123456
......
beginning 6 repetitions
123456
......
beginning 6 repetitions
123456
......
beginning 6 repetitions
123456
......
beginning 6 repetitions
123456
......
beginning 6 repetitions
123456
......
beginning 6 repetitions
123456
......
beginning 6 repetitions
123456
......
beginning 6 repetitions
123456
......
beginning 6 repetitions
123456
minkernel\crts\ucrt\src\appcrt\lowio\write.cpp(49) : Assertion failed: (_osfile(fh) & FOPEN)
minkernel\crts\ucrt\src\appcrt\lowio\close.cpp(49) : Assertion failed: (_osfile(fh) & FOPEN)
minkernel\crts\ucrt\src\appcrt\lowio\close.cpp(49) : Assertion failed: (_osfile(fh) & FOPEN)
a DOS box should flash briefly ...
.minkernel\crts\ucrt\src\appcrt\lowio\write.cpp(49) : Assertion failed: (_osfile(fh) & FOPEN)
minkernel\crts\ucrt\src\appcrt\lowio\close.cpp(49) : Assertion failed: (_osfile(fh) & FOPEN)
minkernel\crts\ucrt\src\appcrt\lowio\close.cpp(49) : Assertion failed: (_osfile(fh) & FOPEN)
a DOS box should flash briefly ...
.minkernel\crts\ucrt\src\appcrt\lowio\write.cpp(49) : Assertion failed: (_osfile(fh) & FOPEN)
minkernel\crts\ucrt\src\appcrt\lowio\close.cpp(49) : Assertion failed: (_osfile(fh) & FOPEN)
minkernel\crts\ucrt\src\appcrt\lowio\close.cpp(49) : Assertion failed: (_osfile(fh) & FOPEN)
a DOS box should flash briefly ...
.minkernel\crts\ucrt\src\appcrt\lowio\write.cpp(49) : Assertion failed: (_osfile(fh) & FOPEN)
minkernel\crts\ucrt\src\appcrt\lowio\close.cpp(49) : Assertion failed: (_osfile(fh) & FOPEN)
minkernel\crts\ucrt\src\appcrt\lowio\close.cpp(49) : Assertion failed: (_osfile(fh) & FOPEN)
a DOS box should flash briefly ...
.minkernel\crts\ucrt\src\appcrt\lowio\write.cpp(49) : Assertion failed: (_osfile(fh) & FOPEN)
minkernel\crts\ucrt\src\appcrt\lowio\close.cpp(49) : Assertion failed: (_osfile(fh) & FOPEN)
minkernel\crts\ucrt\src\appcrt\lowio\close.cpp(49) : Assertion failed: (_osfile(fh) & FOPEN)
a DOS box should flash briefly ...
.minkernel\crts\ucrt\src\appcrt\lowio\write.cpp(49) : Assertion failed: (_osfile(fh) & FOPEN)
minkernel\crts\ucrt\src\appcrt\lowio\close.cpp(49) : Assertion failed: (_osfile(fh) & FOPEN)
minkernel\crts\ucrt\src\appcrt\lowio\close.cpp(49) : Assertion failed: (_osfile(fh) & FOPEN)
a DOS box should flash briefly ...
.
beginning 6 repetitions
123456
......
beginning 6 repetitions
123456
......
beginning 6 repetitions
123456
......
beginning 6 repetitions
123456
......
beginning 6 repetitions
123456
......
beginning 6 repetitions
123456
......
beginning 6 repetitions
123456
......
beginning 6 repetitions
123456
......
beginning 6 repetitions
123456
......
beginning 6 repetitions
123456
......
beginning 6 repetitions
123456
......
beginning 6 repetitions
123456
......
beginning 6 repetitions
123456
......
beginning 6 repetitions
123456
......
beginning 6 repetitions
123456
......
beginning 6 repetitions
123456
......
beginning 6 repetitions
123456
......
beginning 6 repetitions
123456
......
beginning 6 repetitions
123456
......
beginning 6 repetitions
123456
......
beginning 6 repetitions
123456
......
beginning 6 repetitions
123456
......
beginning 6 repetitions
123456
......
beginning 6 repetitions
123456
......
beginning 6 repetitions
123456
......
beginning 6 repetitions
123456
......
beginning 6 repetitions
123456
......
beginning 6 repetitions
123456
......
beginning 6 repetitions
123456
......
beginning 6 repetitions
123456
......
beginning 6 repetitions
123456
......
beginning 6 repetitions
123456
......
beginning 6 repetitions
123456
.Timeout (3:15:00)!
Thread 0x000009d4 (most recent call first):
File "D:\buildarea\3.x.ware-win81-release.refleak\build\lib\threading.py", line 1102 in _wait_for_tstate_lock
File "D:\buildarea\3.x.ware-win81-release.refleak\build\lib\threading.py", line 1086 in join
File "D:\buildarea\3.x.ware-win81-release.refleak\build\lib\test\test_threading.py", line 1586 in test_interrupt_main_subthread
File "D:\buildarea\3.x.ware-win81-release.refleak\build\lib\unittest\case.py", line 549 in _callTestMethod
File "D:\buildarea\3.x.ware-win81-release.refleak\build\lib\unittest\case.py", line 592 in run
File "D:\buildarea\3.x.ware-win81-release.refleak\build\lib\unittest\case.py", line 652 in __call__
File "D:\buildarea\3.x.ware-win81-release.refleak\build\lib\unittest\suite.py", line 122 in run
File "D:\buildarea\3.x.ware-win81-release.refleak\build\lib\unittest\suite.py", line 84 in __call__
File "D:\buildarea\3.x.ware-win81-release.refleak\build\lib\unittest\suite.py", line 122 in run
File "D:\buildarea\3.x.ware-win81-release.refleak\build\lib\unittest\suite.py", line 84 in __call__
File "D:\buildarea\3.x.ware-win81-release.refleak\build\lib\unittest\suite.py", line 122 in run
File "D:\buildarea\3.x.ware-win81-release.refleak\build\lib\unittest\suite.py", line 84 in __call__
File "D:\buildarea\3.x.ware-win81-release.refleak\build\lib\test\support\testresult.py", line 169 in run
File "D:\buildarea\3.x.ware-win81-release.refleak\build\lib\test\support\__init__.py", line 960 in _run_suite
File "D:\buildarea\3.x.ware-win81-release.refleak\build\lib\test\support\__init__.py", line 1083 in run_unittest
File "D:\buildarea\3.x.ware-win81-release.refleak\build\lib\test\libregrtest\runtest.py", line 210 in _test_module
File "D:\buildarea\3.x.ware-win81-release.refleak\build\lib\test\libregrtest\refleak.py", line 90 in dash_R
File "D:\buildarea\3.x.ware-win81-release.refleak\build\lib\test\libregrtest\runtest.py", line 244 in _runtest_inner2
File "D:\buildarea\3.x.ware-win81-release.refleak\build\lib\test\libregrtest\runtest.py", line 282 in _runtest_inner
File "D:\buildarea\3.x.ware-win81-release.refleak\build\lib\test\libregrtest\runtest.py", line 154 in _runtest
File "D:\buildarea\3.x.ware-win81-release.refleak\build\lib\test\libregrtest\runtest.py", line 194 in runtest
File "D:\buildarea\3.x.ware-win81-release.refleak\build\lib\test\libregrtest\runtest_mp.py", line 81 in run_tests_worker
File "D:\buildarea\3.x.ware-win81-release.refleak\build\lib\test\libregrtest\main.py", line 661 in _main
File "D:\buildarea\3.x.ware-win81-release.refleak\build\lib\test\libregrtest\main.py", line 641 in main
File "D:\buildarea\3.x.ware-win81-release.refleak\build\lib\test\libregrtest\main.py", line 719 in main
File "D:\buildarea\3.x.ware-win81-release.refleak\build\lib\test\regrtest.py", line 43 in _main
File "D:\buildarea\3.x.ware-win81-release.refleak\build\lib\test\regrtest.py", line 47 in <module>
File "D:\buildarea\3.x.ware-win81-release.refleak\build\lib\runpy.py", line 86 in _run_code
File "D:\buildarea\3.x.ware-win81-release.refleak\build\lib\runpy.py", line 196 in _run_module_as_main
beginning 6 repetitions
123456
......
Could Not Find D:\buildarea\3.x.ware-win81-release.refleak\build\PCbuild\python*.zip
Test report
===========
Failed tests:
- test_threading
Sincerely,
-The Buildbot
1
0
The Buildbot working for 'Python' has noticed that the worker named koobs-freebsd-564d went away.
It last disconnected at Sun May 30 08:42:34 2021.
The admin on record (as reported by WORKER:info/admin) was Kubilay Kocak <irc://chat.freenode.net/koobs,isnick>
.
Sincerely,
-The Buildbot
1
0