]> git.ipfire.org Git - thirdparty/openssl.git/commitdiff
Fix up external pyca test
authorNeil Horman <nhorman@openssl.org>
Fri, 28 Mar 2025 11:51:02 +0000 (07:51 -0400)
committerNeil Horman <nhorman@openssl.org>
Tue, 1 Apr 2025 13:23:02 +0000 (09:23 -0400)
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 <tomas@openssl.org>
Reviewed-by: Tim Hudson <tjh@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/27192)

test/recipes/95-test_external_pyca.t

index a3d09c118cb4cbe5b4ed84af98f118c8dfabd370..923563493850b0019eafacda69816db6392aa8ce 100644 (file)
@@ -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");