Chromium Code Reviews| 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: |