summaryrefslogtreecommitdiffstats
path: root/tools
diff options
context:
space:
mode:
authortimurrrr@chromium.org <timurrrr@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-11-11 10:59:43 +0000
committertimurrrr@chromium.org <timurrrr@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-11-11 10:59:43 +0000
commiteccf3473fd5391d0111893503a67b220ef286cad (patch)
tree68d98dc735b073399e8f5a68fffc587c9f7e1226 /tools
parentc44f5d14e59edc79e02e20e15ccb14588d1be22d (diff)
downloadchromium_src-eccf3473fd5391d0111893503a67b220ef286cad.zip
chromium_src-eccf3473fd5391d0111893503a67b220ef286cad.tar.gz
chromium_src-eccf3473fd5391d0111893503a67b220ef286cad.tar.bz2
Follow-up fix: use /bin/bash instead of /bin/sh for the browser wrapper
TBR=glider Review URL: http://codereview.chromium.org/8538007 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@109615 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'tools')
-rwxr-xr-xtools/valgrind/valgrind_test.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/valgrind/valgrind_test.py b/tools/valgrind/valgrind_test.py
index f1651fb..72d6a59 100755
--- a/tools/valgrind/valgrind_test.py
+++ b/tools/valgrind/valgrind_test.py
@@ -396,7 +396,7 @@ class ValgrindTool(BaseTool):
prefix="browser_wrapper.",
text=True)
f = os.fdopen(fd, "w")
- f.write("#!/bin/sh\n")
+ f.write("#!/bin/bash\n")
f.write('echo "Started Valgrind wrapper for this test, PID=$$"\n\n')
f.write('for arg in $@\ndo\n')
f.write(' if [[ "$arg" =~ --test-name=(.*) ]]\n then\n')