From: Nikos Mavrogiannopoulos Date: Thu, 8 Dec 2016 14:54:07 +0000 (+0100) Subject: tests: make conditional (to HAVE_LIBIDN) any IDN related checks X-Git-Tag: gnutls_3_5_8~86 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=ddca30ed625d9f5f7efb628e4467ff7ab5a65701;p=thirdparty%2Fgnutls.git tests: make conditional (to HAVE_LIBIDN) any IDN related checks This allows the test suite to successfully complete even when compiled without libidn. --- diff --git a/tests/crq_apis.c b/tests/crq_apis.c index 99c02cb4cf..7ad717ff13 100644 --- a/tests/crq_apis.c +++ b/tests/crq_apis.c @@ -448,8 +448,10 @@ void doit(void) assert(gnutls_x509_crq_export2(crq, GNUTLS_X509_FMT_PEM, &out) >= 0); +#ifdef HAVE_LIBIDN assert(out.size == saved_crq.size); assert(memcmp(out.data, saved_crq.data, out.size)==0); +#endif gnutls_free(out.data); gnutls_x509_crq_deinit(crq); diff --git a/tests/crt_apis.c b/tests/crt_apis.c index 8b8ebbea9b..ed31640823 100644 --- a/tests/crt_apis.c +++ b/tests/crt_apis.c @@ -183,10 +183,12 @@ void doit(void) if (ret != 0) fail("gnutls_x509_crt_set_subject_alt_name\n"); +#ifdef HAVE_LIBIDN ret = gnutls_x509_crt_set_subject_alt_name(crt, GNUTLS_SAN_RFC822NAME, "test@νίκο.org", strlen("test@νίκο.org"), 1); if (ret != 0) fail("gnutls_x509_crt_set_subject_alt_name\n"); +#endif s = 0; ret = gnutls_x509_crt_get_key_purpose_oid(crt, 0, NULL, &s, NULL); @@ -275,8 +277,10 @@ void doit(void) } assert(gnutls_x509_crt_export2(crt, GNUTLS_X509_FMT_PEM, &out) >= 0); +#ifdef HAVE_LIBIDN assert(out.size == saved_crt.size); assert(memcmp(out.data, saved_crt.data, out.size)==0); +#endif gnutls_free(out.data);