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

Unified Diff: expect_tests/pipeline.py

Issue 774783002: Fixed debug mode (Closed) Base URL: https://chromium.googlesource.com/infra/testing/expect_tests@fix-filters
Patch Set: Created 6 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: expect_tests/pipeline.py
diff --git a/expect_tests/pipeline.py b/expect_tests/pipeline.py
index 373c77cbf3fc7601c6fb1967a6a53dc576ac1276..942affc11bcba513661a61692f96416adde62974 100644
--- a/expect_tests/pipeline.py
+++ b/expect_tests/pipeline.py
@@ -329,9 +329,9 @@ def run_loop_process(test_queue, result_queue, opts,
"""
logstream.reset()
try:
- with run_ctx(subtest):
- with cover_ctx.update(include=subtest.coverage_includes()):
- with use_chdir(cwd):
+ with cover_ctx.update(include=subtest.coverage_includes()):
+ with use_chdir(cwd):
dnj 2014/12/02 20:47:26 Is the reason for this that the 'chdir' is necessa
pgervais 2014/12/02 21:17:00 TBH, I don't know. There's only an issue with the
pgervais 2014/12/02 21:32:06 Yep, it works with use_chdir at the lowest level.
+ with run_ctx(subtest):
subresult = subtest.run()
except Exception:
« 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