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

Unified Diff: testing/legion/client_lib.py

Issue 903873003: Fixing a small bug and changing the os to match the new environment. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 10 months 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 | testing/legion/examples/hello_world/host_test.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: testing/legion/client_lib.py
diff --git a/testing/legion/client_lib.py b/testing/legion/client_lib.py
index 4d6a633f0433ce22221652e5dd65338a80275f3f..6e6a86f2227b65c008582323e20e211e04e8ca30 100644
--- a/testing/legion/client_lib.py
+++ b/testing/legion/client_lib.py
@@ -202,7 +202,6 @@ class ClientController(object):
p = subprocess.Popen(cmd, stdout=subprocess.PIPE, stderr=subprocess.PIPE)
_, stderr = p.communicate()
if p.returncode != 0:
- stderr.seek(0)
raise Error(stderr)
def OnConnect(self, ip_address):
« no previous file with comments | « no previous file | testing/legion/examples/hello_world/host_test.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698