From: Anatole Denis Date: Fri, 11 Mar 2016 16:50:54 +0000 (+0100) Subject: tests: storagepoolxml2xmltest: Enable pool-rbd X-Git-Url: http://xenbits.xensource.com/gitweb?a=commitdiff_plain;h=289f37ea81e8a7125ba8c6a9966d09c6d8545d2a;p=libvirt.git tests: storagepoolxml2xmltest: Enable pool-rbd 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 --- diff --git a/tests/storagepoolxml2xmltest.c b/tests/storagepoolxml2xmltest.c index 41d69878cd..b432b85038 100644 --- a/tests/storagepoolxml2xmltest.c +++ b/tests/storagepoolxml2xmltest.c @@ -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; }