From: Sam Lang Date: Mon, 4 Feb 2013 04:08:40 +0000 (-0600) Subject: Add testdir param to get_valgrind_args() calls X-Git-Tag: 1.1.0~2327 X-Git-Url: http://git.apps.os.sepia.ceph.com/?a=commitdiff_plain;h=55c1bcf6b0fbeea93aff6a8a6233e12d5064d45c;p=teuthology.git Add testdir param to get_valgrind_args() calls Signed-off-by: Sam Lang --- diff --git a/teuthology/task/ceph-fuse.py b/teuthology/task/ceph-fuse.py index 7d0518bb86..bcb8520319 100644 --- a/teuthology/task/ceph-fuse.py +++ b/teuthology/task/ceph-fuse.py @@ -99,6 +99,7 @@ def task(ctx, config): if client_config.get('valgrind') is not None: run_cmd.extend( teuthology.get_valgrind_args( + testdir, 'client.{id}'.format(id=id_), client_config.get('valgrind'), ) diff --git a/teuthology/task/rgw.py b/teuthology/task/rgw.py index 5ed76e33ee..e9d5cafd6f 100644 --- a/teuthology/task/rgw.py +++ b/teuthology/task/rgw.py @@ -128,6 +128,7 @@ def start_rgw(ctx, config): run_cmd.extend( teuthology.get_valgrind_args( + testdir, client, client_config.get('valgrind') )