From: Sage Weil Date: Sat, 3 Feb 2018 15:29:44 +0000 (-0600) Subject: qa/tasks/filestore_idempotent: run failure tests later in sequence X-Git-Tag: v13.0.2~338^2~4 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=135ccf87904df5d2b1e7f75e7f6a9c748bbbaee0;p=ceph.git qa/tasks/filestore_idempotent: run failure tests later in sequence We want to get past the initial colleciton and object creation steps, which don't include interesting ops. Signed-off-by: Sage Weil --- diff --git a/qa/tasks/filestore_idempotent.py b/qa/tasks/filestore_idempotent.py index 4e2a228fc3b6..35c1a80022f3 100644 --- a/qa/tasks/filestore_idempotent.py +++ b/qa/tasks/filestore_idempotent.py @@ -38,7 +38,9 @@ def task(ctx, config): dir = '%s/ceph.data/test.%s' % (testdir, client) - seed = str(int(random.uniform(1,100))) + seed = int(random.uniform(1,100)) + start = 800 + random.randint(800,1200) + end = start + 150 try: log.info('creating a working dir') @@ -61,7 +63,7 @@ def task(ctx, config): args=[ 'cd', dir, run.Raw('&&'), - './run_seed_to_range.sh', seed, '50', '300', + './run_seed_to_range.sh', str(seed), str(start), str(end), ], wait=False, check_status=False)