qemu with hax to log dma reads & writes jcs.org/2018/11/12/vfio

qtest: fix make check complaint in crypto module

CC tests/test-crypto-tlscredsx509.o
CC tests/crypto-tls-x509-helpers.o
CC tests/pkix_asn1_tab.o
tests/pkix_asn1_tab.c:7:22: warning: libtasn1.h: No such file or directory
tests/pkix_asn1_tab.c:9: error: expected ‘=’, ‘,’, ‘;’, ‘asm’ or ‘__attribute__’ before ‘pkix_asn1_tab’
make: *** [tests/pkix_asn1_tab.o] Error 1

Signed-off-by: Gonglei <arei.gonglei@huawei.com>
Signed-off-by: Daniel P. Berrange <berrange@redhat.com>

authored by

Gonglei and committed by
Daniel P. Berrange
48b95ea4 77cf26cd

+4 -1
+4 -1
tests/pkix_asn1_tab.c
··· 4 4 */ 5 5 6 6 #include "qemu/osdep.h" 7 - #include <libtasn1.h> 7 + #include "tests/crypto-tls-x509-helpers.h" 8 + 9 + #ifdef QCRYPTO_HAVE_TLS_TEST_SUPPORT 8 10 9 11 const ASN1_ARRAY_TYPE pkix_asn1_tab[] = { 10 12 {"PKIX1", 536875024, 0}, ··· 1103 1105 {0, 1048586, "2"}, 1104 1106 {0, 0, 0} 1105 1107 }; 1108 + #endif /* QCRYPTO_HAVE_TLS_TEST_SUPPORT */