Searched full:flaky (Results 1 – 25 of 289) sorted by relevance
12345678910>>...12
/external/autotest/client/site_tests/graphics_dEQP/scripts/ |
D | process_logs.py | 156 # Figure out duplicates and move them to Flaky result set/list. 158 """Figure out duplicates and move them to Flaky result set/list.""" 160 flaky = set([]) 161 if status_dict.has_key('Flaky'): 162 flaky = status_dict['Flaky'] 164 # FLaky tests are tests with 2 distinct results. 168 flaky |= status_dict[key1] & status_dict[key2] 170 # Remove Flaky tests from other status and convert to dict of list. 172 if key != 'Flaky': 173 not_flaky = list(status_dict[key] - flaky) [all …]
|
D | failure_matrix.py | 31 _PROBLEM_STATUS = ['Fail', 'Flaky'] 36 'Flaky': 'flaky', 136 text_count = '%s Total failure count (Fail + Flaky)' % text_count
|
/external/toolchain-utils/automation/clients/report/dejagnu/ |
D | summary.py | 15 class DejaGnuTestResult(namedtuple('Result', 'name variant result flaky')): 29 if attrs.strip() != 'flaky': 33 flaky = True 35 flaky = False 90 return cls(path, variant or '', result, flaky=flaky) 94 if self.flaky: 95 fmt = 'flaky | '
|
/external/autotest/test_suites/ |
D | control.wifi_flaky | 7 PURPOSE = "Track and monitor flaky WiFi tests." 16 they stop looking. Move flaky tests from elsewhere and into this suite until 17 they can be made stable again. Even flaky tests need to run once in a while.
|
/external/autotest/client/common_lib/ |
D | gtest_parser.py | 41 # '%s disabled' or '%s flaky' on the waterfall display. 57 self._flaky = re.compile(' YOU HAVE (\d+) FLAKY TEST') 193 # Is it a line reporting flaky tests? 197 flaky = int(results.group(1)) 199 flaky = 0 200 if flaky > 0 and isinstance(self.flaky_tests, int): 201 self.flaky_tests = flaky
|
/external/autotest/client/site_tests/cheets_StartAndroid_P/ |
D | control.stress.5 | 17 the Android container. If this test is flaky every Android based test will be 18 flaky as well.
|
D | control.stress.3 | 17 the Android container. If this test is flaky every Android based test will be 18 flaky as well.
|
D | control.stress.8 | 17 the Android container. If this test is flaky every Android based test will be 18 flaky as well.
|
D | control.stress.1 | 17 the Android container. If this test is flaky every Android based test will be 18 flaky as well.
|
D | control.stress.4 | 17 the Android container. If this test is flaky every Android based test will be 18 flaky as well.
|
D | control.stress.6 | 17 the Android container. If this test is flaky every Android based test will be 18 flaky as well.
|
D | control.stress.9 | 17 the Android container. If this test is flaky every Android based test will be 18 flaky as well.
|
D | control.stress.2 | 17 the Android container. If this test is flaky every Android based test will be 18 flaky as well.
|
D | control.stress.7 | 17 the Android container. If this test is flaky every Android based test will be 18 flaky as well.
|
/external/autotest/client/site_tests/cheets_StartAndroid/ |
D | control.stress.8 | 16 the Android container. If this test is flaky every Android based test will be 17 flaky as well.
|
D | control.stress.6 | 16 the Android container. If this test is flaky every Android based test will be 17 flaky as well.
|
D | control.stress.5 | 16 the Android container. If this test is flaky every Android based test will be 17 flaky as well.
|
D | control.stress.1 | 16 the Android container. If this test is flaky every Android based test will be 17 flaky as well.
|
D | control.stress.2 | 16 the Android container. If this test is flaky every Android based test will be 17 flaky as well.
|
D | control.stress.9 | 16 the Android container. If this test is flaky every Android based test will be 17 flaky as well.
|
D | control.stress.7 | 16 the Android container. If this test is flaky every Android based test will be 17 flaky as well.
|
D | control.stress.4 | 16 the Android container. If this test is flaky every Android based test will be 17 flaky as well.
|
D | control.stress.3 | 16 the Android container. If this test is flaky every Android based test will be 17 flaky as well.
|
D | control.stress.0 | 18 the Android container. If this test is flaky every Android based test will be 19 flaky as well.
|
/external/grpc-grpc/test/core/end2end/ |
D | gen_build_yaml.py | 86 …eds_names proxyable secure traceable cpu_cost exclude_iomgrs large_writes flaky allows_compression… 120 'disappearing_server': connectivity_test_options._replace(flaky=True, 375 'flaky': END2END_TESTS[t].flaky, 392 'flaky': END2END_TESTS[t].flaky,
|
12345678910>>...12