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

Unified Diff: test/lib/TestGyp.py

Issue 2077383002: Ignore more Xcode stderr logging information. (Closed) Base URL: https://chromium.googlesource.com/external/gyp.git@master
Patch Set: Created 4 years, 6 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: test/lib/TestGyp.py
diff --git a/test/lib/TestGyp.py b/test/lib/TestGyp.py
index f42ee40dbd73ed901312bdf5229cea9613bd874d..578f28b265e935221702b1228dd0e19e00c616fd 100644
--- a/test/lib/TestGyp.py
+++ b/test/lib/TestGyp.py
@@ -1050,7 +1050,9 @@ class TestGypXcode(TestGypBase):
expected = expected.split('\n')
actual = [a for a in actual
if 'No recorder, buildTask: <Xcode3BuildTask:' not in a and
- 'Beginning test session' not in a]
+ 'Beginning test session' not in a and
+ 'Writing diagnostic log' not in a and
+ 'Session-tests-' not in a]
return match(actual, expected)
kw['match'] = match_filter_xcode
« 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