From 135ccf87904df5d2b1e7f75e7f6a9c748bbbaee0 Mon Sep 17 00:00:00 2001 From: Sage Weil Date: Sat, 3 Feb 2018 09:29:44 -0600 Subject: [PATCH] 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 --- qa/tasks/filestore_idempotent.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/qa/tasks/filestore_idempotent.py b/qa/tasks/filestore_idempotent.py index 4e2a228fc3b..35c1a80022f 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) -- 2.39.5