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

Unified Diff: test/lib/TestGyp.py

Issue 1710543002: Fix tests with Xcode 7. (Closed) Base URL: https://chromium.googlesource.com/external/gyp.git@master
Patch Set: Created 4 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 | test/mac/gyptest-xcode-gcc.py » ('j') | 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 a0515bb49679e5949bddb0bf75886bff2f75e191..f32099be98794f9a90db3cd378ad777314266ca7 100644
--- a/test/lib/TestGyp.py
+++ b/test/lib/TestGyp.py
@@ -1048,7 +1048,8 @@ class TestGypXcode(TestGypBase):
if not TestCmd.is_List(expected):
expected = expected.split('\n')
actual = [a for a in actual
- if 'No recorder, buildTask: <Xcode3BuildTask:' not in a]
+ if 'No recorder, buildTask: <Xcode3BuildTask:' not in a and
+ 'Beginning test session' not in a]
return match(actual, expected)
kw['match'] = match_filter_xcode
« no previous file with comments | « no previous file | test/mac/gyptest-xcode-gcc.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698