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

Unified Diff: tools_webrtc/gtest-parallel-wrapper.py

Issue 3011103002: Update gtest-parallel-wrapper.py to deal with changes in gtest-parallel. (Closed)
Patch Set: Created 3 years, 3 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 | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools_webrtc/gtest-parallel-wrapper.py
diff --git a/tools_webrtc/gtest-parallel-wrapper.py b/tools_webrtc/gtest-parallel-wrapper.py
index b39bda6da55de6d59918ad4427ef5712f8fd6f6b..cbcf0cf4d491fd1e0bb2ec7bf79fee223ac3f86f 100755
--- a/tools_webrtc/gtest-parallel-wrapper.py
+++ b/tools_webrtc/gtest-parallel-wrapper.py
@@ -143,7 +143,7 @@ def main():
output_dir = get_output_dir(gtest_parallel_args)
if output_dir:
for test_status in 'passed', 'failed', 'interrupted':
- logs_dir = os.path.join(output_dir, test_status)
+ logs_dir = os.path.join(output_dir, 'gtest-parallel-logs', test_status)
if not os.path.isdir(logs_dir):
continue
logs = [os.path.join(logs_dir, log) for log in os.listdir(logs_dir)]
« 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