aboutsummaryrefslogtreecommitdiffhomepage
path: root/tools/run_tests/run_tests.py
diff options
context:
space:
mode:
authorGravatar Craig Tiller <ctiller@google.com>2015-01-30 13:13:14 -0800
committerGravatar Craig Tiller <ctiller@google.com>2015-01-30 13:13:14 -0800
commiteb272bc6ca8dea18fc4f20c9a12bfd5507293ae8 (patch)
tree6cd45face003795300559f6c6c557c8a73d338c1 /tools/run_tests/run_tests.py
parent99775828500c26e3d3b8fa927e4e7049982ac649 (diff)
Fix valgind
Diffstat (limited to 'tools/run_tests/run_tests.py')
-rwxr-xr-xtools/run_tests/run_tests.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/run_tests/run_tests.py b/tools/run_tests/run_tests.py
index 50894d189b..a4cb08fa87 100755
--- a/tools/run_tests/run_tests.py
+++ b/tools/run_tests/run_tests.py
@@ -36,7 +36,7 @@ class ValgrindConfig(object):
self.allow_hashing = False
def run_command(self, binary):
- return ['valgrind', binary, '--tool=%s' % self.tool]
+ return ['valgrind', '--tool=%s' % self.tool, binary]
class CLanguage(object):
@@ -125,7 +125,7 @@ _LANGUAGES = {
'node': NodeLanguage(),
'php': PhpLanguage(),
'python': PythonLanguage(),
-}
+ }
# parse command line
argp = argparse.ArgumentParser(description='Run grpc tests.')