From: Ilya Dryomov Date: Thu, 29 May 2014 13:55:09 +0000 (+0400) Subject: rbd: change test_script to run_xfstests_krbd.sh X-Git-Tag: 1.1.0~1418^2 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=refs%2Fpull%2F267%2Fhead;p=teuthology.git rbd: change test_script to run_xfstests_krbd.sh Invoke run_xfstests.sh through a wrapper, which supplies an exclusion list, in order to skip tests we don't want to run. Signed-off-by: Ilya Dryomov --- diff --git a/teuthology/task/rbd.py b/teuthology/task/rbd.py index f3f80dc8..fb93a059 100644 --- a/teuthology/task/rbd.py +++ b/teuthology/task/rbd.py @@ -293,12 +293,11 @@ def run_xfstests_one_client(ctx, role, properties): # Fetch the test script test_root = teuthology.get_testdir(ctx) - test_script = 'run_xfstests.sh' + test_script = 'run_xfstests_krbd.sh' test_path = os.path.join(test_root, test_script) git_branch = 'master' test_url = 'https://raw.github.com/ceph/ceph/{branch}/qa/{script}'.format(branch=git_branch, script=test_script) - # test_url = 'http://ceph.newdream.net/git/?p=ceph.git;a=blob_plain;hb=refs/heads/{branch};f=qa/{script}'.format(branch=git_branch, script=test_script) log.info('Fetching {script} for {role} from {url}'.format(script=test_script, role=role,