]> xenbits.xensource.com Git - libvirt.git/commitdiff
tests: storagepoolxml2xmltest: Enable pool-rbd
authorAnatole Denis <natolumin@gmail.com>
Fri, 11 Mar 2016 16:50:54 +0000 (17:50 +0100)
committerJohn Ferlan <jferlan@redhat.com>
Mon, 28 Mar 2016 16:02:31 +0000 (12:02 -0400)
This test was commited 4 years ago, but was never enabled in
storagepoolxml2xmltest.c. This patch reactivates it, conditionnaly on RBD
storage support being enabled

tests/storagepoolxml2xmltest.c

index 41d69878cd297c0e2c5a8ed4a5f30c553b289e81..b432b85038965deee6a6fef3d26545d0a1a43664 100644 (file)
@@ -101,6 +101,9 @@ mymain(void)
     DO_TEST("pool-zfs");
     DO_TEST("pool-zfs-sourcedev");
 #endif
+#ifdef WITH_STORAGE_RBD
+    DO_TEST("pool-rbd");
+#endif
 
     return ret == 0 ? EXIT_SUCCESS : EXIT_FAILURE;
 }