From 606e77a1ba8fb48db2f83a69f1d194c27453448e Mon Sep 17 00:00:00 2001 From: Miro HronĨok Date: Dec 02 2019 17:24:15 +0000 Subject: Expand the OPENSSL_CONF=/non-existing-file comment It's not just the minimum version now. --- diff --git a/selftest/findleaks.sh b/selftest/findleaks.sh index d04b364..dde2ba8 100755 --- a/selftest/findleaks.sh +++ b/selftest/findleaks.sh @@ -8,11 +8,14 @@ PYTHON=${PYTHON:-python${VERSION}dm} # test_socket swaps and kills the machine https://bugs.python.org/issue34587 X=${X:-"-x test_socket"} -# Fedora sets TLSv1 as explicit minimum version. -# Python's test suite assumes that the minimum protocol version is set to +# Fedora sets explicit minimum/maximum TLS versions. +# Python's test suite assumes that the minimum/maximum version is set to # a magic marker. We workaround the test problem by setting: export OPENSSL_CONF=/non-existing-file # https://bugzilla.redhat.com/show_bug.cgi?id=1618753 +# https://bugzilla.redhat.com/show_bug.cgi?id=1778357 +# https://bugs.python.org/issue35045 +# https://bugs.python.org/issue38815 $PYTHON -m test.pythoninfo $PYTHON -m test -wW --findleaks $X diff --git a/selftest/parallel.sh b/selftest/parallel.sh index 5bc2c11..740607c 100755 --- a/selftest/parallel.sh +++ b/selftest/parallel.sh @@ -11,11 +11,14 @@ X=${X:-"-x test_socket"} # parallel jobs, 0 lets Python decide what's best JOBS=${JOBS:-0} -# Fedora sets TLSv1 as explicit minimum version. -# Python's test suite assumes that the minimum protocol version is set to +# Fedora sets explicit minimum/maximum TLS versions. +# Python's test suite assumes that the minimum/maximum version is set to # a magic marker. We workaround the test problem by setting: export OPENSSL_CONF=/non-existing-file # https://bugzilla.redhat.com/show_bug.cgi?id=1618753 +# https://bugzilla.redhat.com/show_bug.cgi?id=1778357 +# https://bugs.python.org/issue35045 +# https://bugs.python.org/issue38815 $PYTHON -m test.pythoninfo $PYTHON -m test -wW -j$JOBS $X