Free empty output of base64 decoder
[libisds.git] / test / init_gpgpme.c
bloba5694b37d2b39d9b56cfb2cd8ec623ac36291284
1 #include "test.h"
2 #include "crypto.h"
4 static int test_init_gpgme(const isds_error error) {
5 isds_error err;
7 err = _isds_init_gpgme(NULL);
8 if (err != error)
9 FAIL_TEST("Wrong return value");
11 PASS_TEST;
14 int main(int argc, char **argv) {
16 INIT_TEST("init_gpgme");
18 TEST("initialization", test_init_gpgme, IE_SUCCESS);
20 SUM_TEST();