| Index: scripts/common/gtest_utils.py
|
| diff --git a/scripts/common/gtest_utils.py b/scripts/common/gtest_utils.py
|
| index 52dac09aa15905ec9ec1faf21486271ed9d7f1fc..b1128bbf217a788da6ce722171ca575e737f5f68 100755
|
| --- a/scripts/common/gtest_utils.py
|
| +++ b/scripts/common/gtest_utils.py
|
| @@ -115,13 +115,15 @@ class GTestLogParser(object):
|
|
|
| Args:
|
| include_fails: If true, all failing tests with FAILS_ in their names will
|
| - be included. Otherwise, they will only be included if they crashed.
|
| + be included. Otherwise, they will only be included if they crashed or
|
| + timed out.
|
| include_flaky: If true, all failing tests with FLAKY_ in their names will
|
| - be included. Otherwise, they will only be included if they crashed.
|
| + be included. Otherwise, they will only be included if they crashed or
|
| + timed out.
|
|
|
| """
|
| return (self._TestsByStatus('failed', include_fails, include_flaky) +
|
| - self._TestsByStatus('timeout', include_fails, include_flaky) +
|
| + self._TestsByStatus('timeout', True, True) +
|
| self._TestsByStatus('warning', include_fails, include_flaky) +
|
| self.RunningTests())
|
|
|
|
|