Home
last modified time | relevance | path

Searched refs:skipList (Results 1 – 6 of 6) sorted by relevance

/tools/tradefederation/core/src/com/android/tradefed/targetprep/
DDefaultTestsZipInstaller.java64 public DefaultTestsZipInstaller(Collection<String> skipList) { in DefaultTestsZipInstaller() argument
65 setDataWipeSkipList(skipList); in DefaultTestsZipInstaller()
75 public DefaultTestsZipInstaller(String... skipList) { in DefaultTestsZipInstaller() argument
76 setDataWipeSkipList(skipList); in DefaultTestsZipInstaller()
83 public void setDataWipeSkipList(Collection<String> skipList) { in setDataWipeSkipList() argument
84 mDataWipeSkipList = new HashSet<String>(skipList.size()); in setDataWipeSkipList()
85 mDataWipeSkipList.addAll(skipList); in setDataWipeSkipList()
92 public void setDataWipeSkipList(String... skipList) { in setDataWipeSkipList() argument
93 mDataWipeSkipList = new HashSet<String>(skipList.length); in setDataWipeSkipList()
94 mDataWipeSkipList.addAll(Arrays.asList(skipList)); in setDataWipeSkipList()
DITestsZipInstaller.java52 public void setDataWipeSkipList(Collection<String> skipList); in setDataWipeSkipList() argument
63 public void setDataWipeSkipList(String... skipList); in setDataWipeSkipList() argument
/tools/tradefederation/core/javatests/com/android/tradefed/targetprep/
DDefaultTestsZipInstallerTest.java102 Set<String> skipList = testZipInstaller.getDataWipeSkipList(); in testSkipWipeFileSetup() local
103 assertNull("Invalid wipe list set.", skipList); in testSkipWipeFileSetup()
105 skipList = testZipInstaller.getDataWipeSkipList(); in testSkipWipeFileSetup()
106 assertTrue("Invalid wipe list set. Missing value set.", skipList.contains("foo")); in testSkipWipeFileSetup()
111 skipList = testZipInstaller.getDataWipeSkipList(); in testSkipWipeFileSetup()
113 "Invalid wipe list set, should not contain old value.", skipList.contains("foo")); in testSkipWipeFileSetup()
114 assertTrue("Invalid wipe list set. Missing value set.", skipList.contains("bar")); in testSkipWipeFileSetup()
115 assertTrue("Invalid wipe list set. Missing value set.", skipList.contains("foobar")); in testSkipWipeFileSetup()
/tools/tradefederation/core/test_framework/com/android/tradefed/testtype/
DInstalledInstrumentationsTest.java227 int attemptJustExecuted, List<TestRunResult> previousResults, Set<String> skipList) in shouldRetry() argument
248 Set<TestDescription> skipListDescriptor = convertStringToDescription(skipList); in shouldRetry()
267 private Set<TestDescription> convertStringToDescription(Set<String> skipList) { in convertStringToDescription() argument
269 for (String s : skipList) { in convertStringToDescription()
276 private boolean shouldRetry(TestRunResult run, Set<TestDescription> skipList) { in shouldRetry() argument
281 failedTests.removeAll(skipList); in shouldRetry()
/tools/tradefederation/core/src/com/android/tradefed/testtype/retry/
DIAutoRetriableTest.java49 int attemptJustExecuted, List<TestRunResult> previousResults, Set<String> skipList) in shouldRetry() argument
/tools/tradefederation/core/javatests/com/android/tradefed/testtype/
DInstalledInstrumentationsTestTest.java181 Set<String> skipList = new HashSet<>(); in testRun_retry_skipList() local
182 skipList.add(testDesc.toString()); in testRun_retry_skipList()
183 assertFalse(mInstalledInstrTest.shouldRetry(0, previousResults, skipList)); in testRun_retry_skipList()