| 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
|
|
|
|
|