suites/fs: add client recovery

Signed-off-by: John Spray <john.spray@redhat.com>
This commit is contained in:
John Spray 2014-08-20 12:57:23 +01:00
parent d001cc27bc
commit 1855e094e5
5 changed files with 23 additions and 1 deletions

0
suites/fs/recovery/% Normal file
View File

View File

@ -0,0 +1,3 @@
roles:
- [mon.a, osd.0, mds.a]
- [client.0, client.1, osd.1, osd.2]

View File

@ -0,0 +1,8 @@
tasks:
- install:
- ceph:
- ceph-fuse:
client.0:
mounted: false
client.1:
mounted: false

View File

@ -0,0 +1,11 @@
# The task interferes with the network, so we need
# to permit OSDs to complain about that.
overrides:
ceph:
log-whitelist:
- wrongly marked me down
- slow request
tasks:
- mds_client_recovery:

View File

@ -385,7 +385,7 @@ def task(ctx, config):
# Execute test suite
# ==================
if 'test_name' in config:
if config and 'test_name' in config:
suite = unittest.TestLoader().loadTestsFromName(
"teuthology.task.mds_client_recovery.{0}".format(config['test_name']))
else: