debugging meson build tests

This commit is contained in:
Heiko Reese
2021-09-11 12:20:23 +02:00
parent b6726dfcd2
commit 57b829737e

View File

@ -26,6 +26,8 @@ DECRYPTED02="$(LIBEXIM_PASSWORD="${TEST_PASSWORD}" src/libexim-encrypt-dlfunc-de
if [ "${DECRYPTED02}" == "${TEST_CLEARTEXT}" ] ; then if [ "${DECRYPTED02}" == "${TEST_CLEARTEXT}" ] ; then
echo "ok 2 - decrypt file contents with password from environment successful" echo "ok 2 - decrypt file contents with password from environment successful"
else else
echo "${CIPHERTEXT_FILE01}"
cat "${CIPHERTEXT_FILE01}"
echo "not ok 2 - decrypt file contents with password from environment unsuccessful" echo "not ok 2 - decrypt file contents with password from environment unsuccessful"
fi fi
unset LIBEXIM_PASSWORD unset LIBEXIM_PASSWORD
@ -41,5 +43,7 @@ DECRYPTED04="$(src/libexim-encrypt-dlfunc-decrypt-secretbox -p ${TEST_PASSWORD}
if [ "${DECRYPTED04}" == "${TEST_CLEARTEXT}" ] ; then if [ "${DECRYPTED04}" == "${TEST_CLEARTEXT}" ] ; then
echo "ok 4 - decrypt file contents with password from commandline successful" echo "ok 4 - decrypt file contents with password from commandline successful"
else else
echo "${CIPHERTEXT_FILE02}"
cat "${CIPHERTEXT_FILE02}"
echo "not ok 4 - decrypt file contents with password from commandline unsuccessful" echo "not ok 4 - decrypt file contents with password from commandline unsuccessful"
fi fi