OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:include_fails
(Results
1 - 2
of
2
) sorted by null
/external/autotest/server/
site_gtest_runner.py
215
def _TestsByStatus(self, status,
include_fails
, include_flaky):
220
include_fails
: If False, tests containing 'FAILS_' anywhere in
230
if not
include_fails
:
261
def FailedTests(self,
include_fails
=False, include_flaky=False):
268
include_fails
: If true, all failing tests with FAILS_ in their
277
return (self._TestsByStatus('failed',
include_fails
, include_flaky) +
278
self._TestsByStatus('timeout',
include_fails
, include_flaky) +
279
self._TestsByStatus('started',
include_fails
, include_flaky))
/external/autotest/server/site_tests/brillo_Gtests/
brillo_Gtests.py
199
failed_tests = parser.FailedTests(
include_fails
=True,
Completed in 487 milliseconds