From: Neil Horman Date: Fri, 28 Mar 2025 11:51:02 +0000 (-0400) Subject: Fix up external pyca test X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=a5f377f280931a724e56354ddd961e008b37088b;p=thirdparty%2Fopenssl.git Fix up external pyca test The latest version of pyca-cryptography no longer has a setup.py script, so change the check in the test to look for release.py instead Reviewed-by: Tomas Mraz Reviewed-by: Tim Hudson (Merged from https://github.com/openssl/openssl/pull/27192) --- diff --git a/test/recipes/95-test_external_pyca.t b/test/recipes/95-test_external_pyca.t index a3d09c118cb..92356349385 100644 --- a/test/recipes/95-test_external_pyca.t +++ b/test/recipes/95-test_external_pyca.t @@ -18,7 +18,7 @@ plan skip_all => "No external tests in this configuration" plan skip_all => "PYCA tests not available on Windows or VMS" if $^O =~ /^(VMS|MSWin32)$/; plan skip_all => "PYCA Cryptography not available" - if ! -f srctop_file("pyca-cryptography", "setup.py"); + if ! -f srctop_file("pyca-cryptography", "release.py"); plan skip_all => "PYCA tests only available in a shared build" if disabled("shared");