Skip to content

Commit c04fac7

Browse files
committed
Added debug output
1 parent 9a0be40 commit c04fac7

1 file changed

Lines changed: 9 additions & 0 deletions

File tree

src/xmlsec/test/p11_test.py

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -179,6 +179,15 @@ def setup():
179179
"init = 0",
180180
]))
181181

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+
182191
signer_cert_der = _tf()
183192

184193
logging.debug("Generating self-signed certificate")

0 commit comments

Comments
 (0)