[libvirt] [PATCH 5/6] conf: start testing contents of the new backing chain fields

Peter Krempa pkrempa at redhat.com
Wed Apr 9 12:11:30 UTC 2014


On 04/09/14 06:35, Eric Blake wrote:
> The testsuite is absolutely essential to feeling comfortable
> about swapping the backing chain structure over to a new format.
> This patch tests the path settings, and demonstrates that the
> correct short name is being passed to the child.
> 
> * tests/virstoragetest.c (testStorageChain): Test path.
> (mymain): Update expected data.
> 
> Signed-off-by: Eric Blake <eblake at redhat.com>
> ---
>  tests/virstoragetest.c | 69 ++++++++++++++++++++++++++++++++++++++++----------
>  1 file changed, 56 insertions(+), 13 deletions(-)
> 
> diff --git a/tests/virstoragetest.c b/tests/virstoragetest.c
> index 093053a..9c2f815 100644
> --- a/tests/virstoragetest.c
> +++ b/tests/virstoragetest.c

> @@ -294,22 +297,28 @@ testStorageChain(const void *args)
> 
>          expBackingDirectory = abs ? data->files[i]->expBackingDirAbs
>              : data->files[i]->expBackingDirRel;
> +        expPath = abs ? data->files[i]->pathAbs
> +            : data->files[i]->pathRel;

This will need to be updated as in 2/6 due of the upstream changes.

>          if (virAsprintf(&expect,
> -                        "store:%s\nraw:%s\ndirectory:%s\nother:%d %d %lld %d",
> +                        "store:%s\nraw:%s\ndirectory:%s\nother:%d %d %lld %d\n"
> +                        "path:%s\n",
>                          NULLSTR(data->files[i]->expBackingStore),
>                          NULLSTR(data->files[i]->expBackingStoreRaw),
>                          NULLSTR(expBackingDirectory),
>                          data->files[i]->expBackingFormat,
>                          data->files[i]->expIsFile,
>                          data->files[i]->expCapacity,
> -                        data->files[i]->expEncrypted) < 0 ||
> +                        data->files[i]->expEncrypted,
> +                        NULLSTR(expPath)) < 0 ||
>              virAsprintf(&actual,
> -                        "store:%s\nraw:%s\ndirectory:%s\nother:%d %d %lld %d",
> +                        "store:%s\nraw:%s\ndirectory:%s\nother:%d %d %lld %d\n"
> +                        "path:%s\n",
>                          NULLSTR(elt->backingStore),
>                          NULLSTR(elt->backingStoreRaw),
>                          NULLSTR(elt->directory),
>                          elt->backingStoreFormat, elt->backingStoreIsFile,
> -                        elt->capacity, !!elt->encryption) < 0) {
> +                        elt->capacity, !!elt->encryption,
> +                        NULLSTR(elt->path)) < 0) {
>              VIR_FREE(expect);
>              VIR_FREE(actual);
>              goto cleanup;

ACK with build failure resolved.

Peter


-------------- next part --------------
A non-text attachment was scrubbed...
Name: signature.asc
Type: application/pgp-signature
Size: 901 bytes
Desc: OpenPGP digital signature
URL: <http://listman.redhat.com/archives/libvir-list/attachments/20140409/cf447f1e/attachment-0001.sig>


More information about the libvir-list mailing list