tests: allow bluestore devices

Signed-off-by: Sébastien Han <seb@redhat.com>
pull/1656/head
Sébastien Han 2017-07-05 10:45:25 +02:00 committed by Guillaume Abrioux
parent ed8a7cf1e0
commit 476d1677eb
1 changed files with 1 additions and 1 deletions

View File

@ -4,4 +4,4 @@ class TestOSD(object):
def test_osds_are_all_collocated(self, node, Command):
# TODO: figure out way to paramaterize node['vars']['devices'] for this test
for device in node["vars"]["devices"]:
assert Command.check_output("sudo blkid -s PARTLABEL -o value %s2" % device) == "ceph journal"
assert Command.check_output("sudo blkid -s PARTLABEL -o value %s2" % device) in ["ceph journal", "ceph block"]