qemu-block
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [Qemu-block] [PATCH v4 05/26] crypto: skip testing of unsupported ci


From: Eric Blake
Subject: Re: [Qemu-block] [PATCH v4 05/26] crypto: skip testing of unsupported cipher algorithms
Date: Fri, 11 Mar 2016 12:10:46 -0700
User-agent: Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Thunderbird/38.6.0

On 02/29/2016 05:00 AM, Daniel P. Berrange wrote:
> We don't guarantee that all crypto backends will support
> all cipher algorithms, so we should skip tests unless
> the crypto backend indicates support.
> 
> Signed-off-by: Daniel P. Berrange <address@hidden>
> ---
>  tests/test-crypto-cipher.c | 4 +++-
>  1 file changed, 3 insertions(+), 1 deletion(-)

Reviewed-by: Eric Blake <address@hidden>

> 
> diff --git a/tests/test-crypto-cipher.c b/tests/test-crypto-cipher.c
> index 9f912ec..7a073e9 100644
> --- a/tests/test-crypto-cipher.c
> +++ b/tests/test-crypto-cipher.c
> @@ -380,7 +380,9 @@ int main(int argc, char **argv)
>      g_assert(qcrypto_init(NULL) == 0);
>  
>      for (i = 0; i < G_N_ELEMENTS(test_data); i++) {
> -        g_test_add_data_func(test_data[i].path, &test_data[i], test_cipher);
> +        if (qcrypto_cipher_supports(test_data[i].alg)) {
> +            g_test_add_data_func(test_data[i].path, &test_data[i], 
> test_cipher);
> +        }
>      }
>  
>      g_test_add_func("/crypto/cipher/null-iv",
> 

-- 
Eric Blake   eblake redhat com    +1-919-301-3266
Libvirt virtualization library http://libvirt.org

Attachment: signature.asc
Description: OpenPGP digital signature


reply via email to

[Prev in Thread] Current Thread [Next in Thread]