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

Unified Diff: tools-webrtc/mb/mb.py

Issue 2686563002: Pass isolate output dir to gtest-parallel-wrapper.py (Closed)
Patch Set: Don't pass timeout. Created 3 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 | tools-webrtc/mb/mb_unittest.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools-webrtc/mb/mb.py
diff --git a/tools-webrtc/mb/mb.py b/tools-webrtc/mb/mb.py
index eb92f239f0c035586feae16caad3aad4ab4fb7f2..49f681f9dc130e59029cc8350ef507ab076f4086 100755
--- a/tools-webrtc/mb/mb.py
+++ b/tools-webrtc/mb/mb.py
@@ -1100,14 +1100,17 @@ class MetaBuildWrapper(object):
gtest_parallel = (test_type != 'non_parallel_console_test_launcher' and
not memcheck)
- gtest_parallel_wrapper = [
- '../../third_party/gtest-parallel/gtest-parallel-wrapper.py'
- ]
if gtest_parallel:
extra_files += [
'../../third_party/gtest-parallel/gtest-parallel',
'../../third_party/gtest-parallel/gtest-parallel-wrapper.py',
]
+ sep = '\\' if self.platform == 'win32' else '/'
+ output_dir = '${ISOLATED_OUTDIR}' + sep + 'test_logs'
+ gtest_parallel_wrapper = [
+ '../../third_party/gtest-parallel/gtest-parallel-wrapper.py',
+ '--output_dir=%s' % output_dir,
+ ]
asan = 'is_asan=true' in vals['gn_args']
msan = 'is_msan=true' in vals['gn_args']
« no previous file with comments | « no previous file | tools-webrtc/mb/mb_unittest.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698