We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9a0be40 commit c04fac7Copy full SHA for c04fac7
1 file changed
src/xmlsec/test/p11_test.py
@@ -179,6 +179,15 @@ def setup():
179
"init = 0",
180
]))
181
182
+ with open(openssl_conf, "r") as f:
183
+ logging.debug('-------- START DEBUG openssl_conf --------')
184
+ logging.debug(f.readlines())
185
+ logging.debug('-------- END DEBUG openssl_conf --------')
186
+ logging.debug('-------- START DEBUG paths --------')
187
+ logging.debug(run_cmd(['ls', '-ld', component_path['P11_ENGINE']]))
188
+ logging.debug(run_cmd(['ls', '-ld', component_path['P11_MODULE']]))
189
+ logging.debug('-------- END DEBUG paths --------')
190
+
191
signer_cert_der = _tf()
192
193
logging.debug("Generating self-signed certificate")
0 commit comments