From: Sage Weil Date: Tue, 20 Dec 2016 21:03:17 +0000 (-0500) Subject: qa/workunits: remove crash_replay_interval tests X-Git-Tag: v12.0.0~334^2 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=265c2ff4461028849ccb9909fb2d4830bf41d083;p=ceph.git qa/workunits: remove crash_replay_interval tests Signed-off-by: Sage Weil --- diff --git a/qa/workunits/cephtool/test.sh b/qa/workunits/cephtool/test.sh index 27f5ecbc1c5c..24fec8d7a57d 100755 --- a/qa/workunits/cephtool/test.sh +++ b/qa/workunits/cephtool/test.sh @@ -801,11 +801,6 @@ function test_mon_mds() # the "current_epoch + 1" checking below if they're generating updates fail_all_mds $FS_NAME - # Check for default crash_replay_interval set automatically in 'fs new' - #This may vary based on ceph.conf (e.g., it's 5 in teuthology runs) - #ceph osd dump | grep fs_data > $TMPFILE - #check_response "crash_replay_interval 45 " - ceph mds compat show expect_false ceph mds deactivate 2 ceph mds dump @@ -1441,7 +1436,7 @@ function test_mon_osd_pool_set() wait_for_clean ceph osd pool get $TEST_POOL_GETSET all - for s in pg_num pgp_num size min_size crash_replay_interval crush_rule crush_ruleset; do + for s in pg_num pgp_num size min_size crush_rule crush_ruleset; do ceph osd pool get $TEST_POOL_GETSET $s done diff --git a/qa/workunits/rest/test.py b/qa/workunits/rest/test.py index a6a52fc58746..7f10c9cf6685 100755 --- a/qa/workunits/rest/test.py +++ b/qa/workunits/rest/test.py @@ -398,7 +398,7 @@ if __name__ == '__main__': expect('osd/reweight?id=0&weight=-1', 'PUT', 400, '') expect('osd/reweight?id=0&weight=1', 'PUT', 200, '') - for v in ['pg_num', 'pgp_num', 'size', 'min_size', 'crash_replay_interval', + for v in ['pg_num', 'pgp_num', 'size', 'min_size', 'crush_ruleset']: r = expect('osd/pool/get.json?pool=rbd&var=' + v, 'GET', 200, 'json') assert(v in r.myjson['output'])