You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# TODO: Remove `skip_for_zseries` when resolving CDRIVER-5990.
103
+
skip_for_zseries() {
104
+
if$IS_ZSERIES;then
105
+
echo"Skipping test until DEVPROD-16954 is resolved."
106
+
return
107
+
fi
108
+
# Run the test command:
109
+
"$@"
110
+
}
111
+
102
112
if [[ "${ssl}"!="OFF" ]];then
103
113
# FIXME: CDRIVER-2008 for the cygwin check
104
114
if [[ "${OSTYPE}"!="cygwin" ]];then
105
115
echo"Authenticating using X.509"
106
-
LD_LIBRARY_PATH="${openssl_lib_prefix}""${ping}""mongodb://CN=client,OU=kerneluser,O=10Gen,L=New York City,ST=New York,C=US@${auth_host}/?ssl=true&authMechanism=MONGODB-X509&sslClientCertificateKeyFile=src/libmongoc/tests/x509gen/ldaptest-client-key-and-cert.pem&sslCertificateAuthorityFile=src/libmongoc/tests/x509gen/ldaptest-ca-cert.crt&sslAllowInvalidHostnames=true&${c_timeout}"
116
+
LD_LIBRARY_PATH="${openssl_lib_prefix}"skip_for_zseries "${ping}""mongodb://CN=client,OU=kerneluser,O=10Gen,L=New York City,ST=New York,C=US@${auth_host}/?ssl=true&authMechanism=MONGODB-X509&sslClientCertificateKeyFile=src/libmongoc/tests/x509gen/ldaptest-client-key-and-cert.pem&sslCertificateAuthorityFile=src/libmongoc/tests/x509gen/ldaptest-ca-cert.crt&sslAllowInvalidHostnames=true&${c_timeout}"
0 commit comments