We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c682c9f commit 67b3ed1Copy full SHA for 67b3ed1
.github/run_test.sh
@@ -41,6 +41,17 @@ else
41
${env} make ${TEST_TARGET} SKIP_LTESTS="${SKIP_LTESTS}" LTESTS="${LTESTS}"
42
fi
43
44
+# Replace our self-built with the distro-provided one before running the tests
45
+# again.
46
+case "$1" in
47
+ openssl-3.*)
48
+ ${SUDO} cp /lib/x86_64-linux-gnu/libcrypto.so.3 /opt/openssl/lib64/libcrypto.so.3
49
+ if [ -z "${TEST_SSH_SSHD_CONFOPTS}" ]; then
50
+ SSHD_CONFOPTS=AcceptEnv=OpenSSL3_ABI_Test
51
+ fi
52
+ ;;
53
+esac
54
+
55
if [ ! -z "${SSHD_CONFOPTS}" ]; then
56
echo "rerunning t-exec with TEST_SSH_SSHD_CONFOPTS='${SSHD_CONFOPTS}'"
57
if [ -z "${LTESTS}" ]; then
0 commit comments