diff options
author | Paolo Bonzini <pbonzini@redhat.com> | 2021-06-16 17:36:55 +0200 |
---|---|---|
committer | Paolo Bonzini <pbonzini@redhat.com> | 2021-06-25 10:53:46 +0200 |
commit | 4c1f23cfb84c386a8f4f5433f0fd98e0c85d057b (patch) | |
tree | 54c2aaed1e8799d94d00b5de06cdc5660b732a94 /tests/unit/crypto-tls-x509-helpers.h | |
parent | 72150df2c5654870d5468bc4477783497b910816 (diff) | |
download | qemu-4c1f23cfb84c386a8f4f5433f0fd98e0c85d057b.zip qemu-4c1f23cfb84c386a8f4f5433f0fd98e0c85d057b.tar.gz qemu-4c1f23cfb84c386a8f4f5433f0fd98e0c85d057b.tar.bz2 |
tests: remove QCRYPTO_HAVE_TLS_TEST_SUPPORT
meson.build already decides whether it is possible to build the TLS
test suite. There is no need to include that in the source as well.
The dummy tests in fact are broken because they do not produce valid
TAP output (empty output is rejected by scripts/tap-driver.pl).
Cc: Daniel P. Berrangé <berrange@redhat.com>
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Diffstat (limited to 'tests/unit/crypto-tls-x509-helpers.h')
-rw-r--r-- | tests/unit/crypto-tls-x509-helpers.h | 11 |
1 files changed, 1 insertions, 10 deletions
diff --git a/tests/unit/crypto-tls-x509-helpers.h b/tests/unit/crypto-tls-x509-helpers.h index 8fcd778..cf6329e 100644 --- a/tests/unit/crypto-tls-x509-helpers.h +++ b/tests/unit/crypto-tls-x509-helpers.h @@ -23,14 +23,7 @@ #include <gnutls/gnutls.h> #include <gnutls/x509.h> - -#if !(defined WIN32) && \ - defined(CONFIG_TASN1) -# define QCRYPTO_HAVE_TLS_TEST_SUPPORT -#endif - -#ifdef QCRYPTO_HAVE_TLS_TEST_SUPPORT -# include <libtasn1.h> +#include <libtasn1.h> /* @@ -127,6 +120,4 @@ void test_tls_cleanup(const char *keyfile); extern const asn1_static_node pkix_asn1_tab[]; -#endif /* QCRYPTO_HAVE_TLS_TEST_SUPPORT */ - #endif |