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