Index: tools/mb/mb.py |
diff --git a/tools/mb/mb.py b/tools/mb/mb.py |
index ff75f84dac33ba2afc24b6b615d215ceb896d7e7..c82fb9044c9c3df6f668c5762bb29c174ffcacea 100755 |
--- a/tools/mb/mb.py |
+++ b/tools/mb/mb.py |
@@ -1057,8 +1057,9 @@ class MetaBuildWrapper(object): |
'--test-launcher-bot-mode', |
'--enable-gpu', |
'--test-launcher-jobs=1', |
- '--gtest_filter=%s' % gtest_filter, |
] |
+ if gtest_filter: |
+ cmdline.extend(('--gtest_filter=%s' % gtest_filter)) |
Dirk Pranke
2016/08/03 22:33:44
ick. I'm surprised this didn't cause more problems
M-A Ruel
2016/08/03 22:37:58
This was broken, fixed in patchset 4.
|
elif test_type == 'script': |
extra_files = [ |
'../../testing/test_env.py' |