Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(365)

Unified Diff: client/common_lib/utils.py

Issue 5515009: Remove unnecessary double-shell. (Closed) Base URL: ssh://git@gitrw.chromium.org:9222/autotest.git@master
Patch Set: Whitespace. Created 10 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: client/common_lib/utils.py
diff --git a/client/common_lib/utils.py b/client/common_lib/utils.py
index 47f3cb4c2e11d32a7331f6d12fbc448a6ee09b7f..101599b6e324e7ab5d31e7b4725c45b8f655535c 100644
--- a/client/common_lib/utils.py
+++ b/client/common_lib/utils.py
@@ -75,7 +75,12 @@ class BgJob(object):
self.sp = subprocess.Popen(command, stdout=subprocess.PIPE,
stderr=subprocess.PIPE,
preexec_fn=self._reset_sigpipe, shell=True,
- executable="/bin/bash",
+
+ # Default shell in ChromeOS test image is
+ # already bash. We're seeing shell-init
+ # errors if this value is set.
+
+ #executable="/bin/bash",
stdin=stdin)
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698