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
This commit is contained in:
Anatole Denis 2016-03-11 17:50:54 +01:00 committed by John Ferlan
parent 478474515d
commit 289f37ea81

View 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;
}