Home
last modified time | relevance | path

Searched refs:attempt (Results 1 – 25 of 26) sorted by relevance

12

/tools/tradefederation/core/tests/src/com/android/tradefed/testtype/suite/
DModuleListenerTest.java143 for (int attempt = 0; attempt < maxRunLimit; attempt++) { in testhasRunCrashedAtAttempt()
144 mListener.testRunStarted("run1", 0, attempt); in testhasRunCrashedAtAttempt()
145 if (attempt < clearRun1FailureAtAttempt) { in testhasRunCrashedAtAttempt()
149 mListener.testRunStarted("run2", 0, attempt); in testhasRunCrashedAtAttempt()
150 if (attempt < clearRun2FailureAtAttempt) { in testhasRunCrashedAtAttempt()
157 for (int attempt = 0; attempt < finalRunFailureAtAttempt; attempt++) { in testhasRunCrashedAtAttempt()
158 assertTrue(mListener.hasRunCrashedAtAttempt(attempt)); in testhasRunCrashedAtAttempt()
160 for (int attempt = finalRunFailureAtAttempt; attempt < maxRunLimit; attempt++) { in testhasRunCrashedAtAttempt()
161 assertFalse(mListener.hasRunCrashedAtAttempt(attempt)); in testhasRunCrashedAtAttempt()
DModuleDefinitionTest.java1420 for (int attempt = 0; attempt < 3; attempt++) { in testMultiRun_multiAttempts()
1424 EasyMock.eq(attempt), in testMultiRun_multiAttempts()
1506 for (int attempt = 0; attempt < 3; attempt++) { in testMultiRun_multiAttempts_filter()
1507 if (attempt == 0) { in testMultiRun_multiAttempts_filter()
1511 EasyMock.eq(attempt), in testMultiRun_multiAttempts_filter()
1517 EasyMock.eq(attempt), in testMultiRun_multiAttempts_filter()
1521 if (attempt < 1) { in testMultiRun_multiAttempts_filter()
1536 if (attempt < 1) { in testMultiRun_multiAttempts_filter()
1546 if (attempt < 1) { in testMultiRun_multiAttempts_filter()
1561 if (attempt < 1) { in testMultiRun_multiAttempts_filter()
DGranularRetriableTestWrapperTest.java98 public void addTestBecomePass(TestDescription testCase, int attempt) { in addTestBecomePass() argument
99 mBecomePass.put(testCase, attempt); in addTestBecomePass()
/tools/tradefederation/core/src/com/android/tradefed/result/
DTestResult.java186 for (TestResult attempt : results) { in merge()
187 mergedResult.mProtoMetrics.putAll(attempt.getProtoMetrics()); in merge()
188 mergedResult.mMetrics.putAll(attempt.getMetrics()); in merge()
189 mergedResult.mLoggedFiles.putAll(attempt.getLoggedFiles()); in merge()
190 earliestStartTime = Math.min(attempt.getStartTime(), earliestStartTime); in merge()
191 latestEndTime = Math.max(attempt.getEndTime(), latestEndTime); in merge()
192 switch (attempt.getStatus()) { in merge()
198 if (attempt.getStackTrace() != null) { in merge()
199 errorMsg.add(attempt.getStackTrace()); in merge()
208 if (attempt.getStackTrace() != null) { in merge()
[all …]
DCollectingTestListener.java491 public TestRunResult getTestRunAtAttempt(String testRunName, int attempt) { in getTestRunAtAttempt() argument
493 if (results == null || attempt < 0 || attempt >= results.size()) { in getTestRunAtAttempt()
497 return results.get(attempt); in getTestRunAtAttempt()
/tools/tradefederation/core/src/com/android/tradefed/device/
DReconnectingRecovery.java45 int attempt = 1; in recoverDevice() local
47 CLog.i("Trying to reconnect with device " + serial + " / attempt " + attempt); in recoverDevice()
49 } while (monitor.waitForDeviceOnline() == null && ++attempt <= CONNECTION_ATTEMPTS); in recoverDevice()
51 String errMsg = "Could not recover device " + serial + " after " + --attempt + " attempts"; in recoverDevice()
DTestDevice.java1710 int attempt = 0; in dumpAndPullHeap() local
1712 while (!doesFileExist(devicePath) && attempt < 3) { in dumpAndPullHeap()
1714 attempt++; in dumpAndPullHeap()
/tools/tradefederation/core/src/com/android/tradefed/device/cloud/
DManagedRemoteDevice.java145 for (int attempt = 0; attempt < getOptions().getGceMaxAttempt(); attempt++) { in launchGce()
152 attempt + 1, getOptions().getGceMaxAttempt(), tse); in launchGce()
DRemoteAndroidVirtualDevice.java250 for (int attempt = 0; attempt < getOptions().getGceMaxAttempt(); attempt++) { in launchGce()
257 attempt + 1, getOptions().getGceMaxAttempt(), tse); in launchGce()
/tools/test/connectivity/acts/tests/google/experimental/
DBluetoothReconnectTest.py133 for attempt in range(RECONNECTION_ATTEMPTS):
134 self.log.info("Reconnection attempt {}".format(attempt + 1))
143 'reconnect_attempt': attempt + 1}
DBluetoothPairAndConnectTest.py128 for attempt in range(PAIR_CONNECT_ATTEMPTS):
129 self.log.info('Pair and connection attempt {}'.format(attempt + 1))
139 'pair_and_connect_attempt': attempt + 1}
/tools/tradefederation/core/tests/src/com/android/tradefed/result/
DCollectingTestListenerTest.java370 String runName, String testName, String metricValue, int attempt) { in injectTestRun() argument
371 return injectTestRun(runName, testName, metricValue, attempt, false); in injectTestRun()
380 String runName, String testName, String metricValue, int attempt, boolean failtest) { in injectTestRun() argument
386 mCollectingTestListener.testRunStarted(runName, 1, attempt); in injectTestRun()
DJsonHttpTestResultReporterTest.java102 int attempt, in injectTestRun() argument
109 target.testRunStarted(runName, 1, attempt); in injectTestRun()
/tools/tradefederation/core/proto/
Dtest_record.proto65 // The attempt number of a target if the target ran several times. First
66 // attempt is 0 (Default value).
/tools/test/connectivity/acts/tests/google/wifi/
DWifiChaosTest.py263 for attempt in range(5):
277 "attempt." % (ssid, attempt))
/tools/tradefederation/core/src/com/android/tradefed/invoker/
DRemoteInvocationExecution.java194 int attempt = 0; in runTests() local
196 while (!result && attempt < MAX_PUSH_TF_ATTEMPTS) { in runTests()
206 attempt++; in runTests()
/tools/tradefederation/core/src/com/android/tradefed/testtype/suite/
DModuleDefinition.java624 Integer attempt, in reportFinalResults() argument
628 if (attempt != null) { in reportFinalResults()
629 listener.testRunStarted(getId(), totalExpectedTests, attempt, mStartTestTime); in reportFinalResults() local
/tools/test/connectivity/acts/framework/acts/controllers/buds_lib/
Dapollo_lib.py1383 for attempt in range(tries_before_recovery):
1396 'left : %d' % (tries_before_recovery - attempt - 1))
1397 if attempt + 1 >= tries_before_recovery:
/tools/tradefederation/core/src/com/android/tradefed/util/
DSubprocessEventHelper.java76 public TestRunStartedEventInfo(String runName, int testCount, int attempt) { in TestRunStartedEventInfo() argument
79 mAttempt = attempt; in TestRunStartedEventInfo()
/tools/apksig/src/apksigner/java/com/android/apksigner/
Dhelp_lineage.txt86 tool will attempt to load the key using the KeyStore
88 and attempt to load the key using that password.
Dhelp_rotate.txt89 tool will attempt to load the key using the KeyStore
91 and attempt to load the key using that password.
Dhelp_sign.txt137 tool will attempt to load the key using the KeyStore
139 and attempt to load the key using that password.
/tools/repohooks/tools/
Dspelling.txt155 atempt||attempt
/tools/test/connectivity/acts/framework/acts/controllers/buds_lib/dev_utils/proto/google/protobuf/
Ddescriptor.proto301 // throws an exception whenever an attempt is made to assign a non-UTF-8
/tools/external/fat32lib/
DNOTICE112 …tribute the Library except as expressly provided under this License. Any attempt otherwise to copy…

12