Added test fo password decryption command

This commit is contained in:
Heiko Reese
2021-09-11 02:46:32 +02:00
parent 5a1bd58452
commit 1f8aa5fc4c
3 changed files with 36 additions and 3 deletions

View File

@ -16,6 +16,8 @@ shared_library('exim-encrypt-dlfunc', 'libexim-encrypt-dlfunc.c',
dependencies : [ sodium_deps ],
install: true)
simple_exim_test = find_program('test_libexim-encrypt-dlfunc.sh')
test('simple test', simple_exim_test)
dlfunc_test = find_program('test_libexim-encrypt-dlfunc.sh')
test('simple test', dlfunc_test)
decrypt_secretbox_test = find_program('test_libexim-encrypt-dlfunc-decrypt-secretbox.sh')
test('decrypt-secretbox', decrypt_secretbox_test)