Searched refs:testConfig (Results 1 – 7 of 7) sorted by relevance
/tools/tradefederation/core/test_framework/com/android/tradefed/testtype/suite/ |
D | AtestRunner.java | 121 for (IConfiguration testConfig : configMap.values()) { in loadTests() 123 disableTargetPreparers(testConfig, mSkipSetUp, mSkipTearDown); in loadTests() 126 addDebugger(testConfig); in loadTests() 131 includeFilters.get(canonicalizeConfigName(testConfig.getName())); in loadTests() 134 addFilter(testConfig, filter); in loadTests() 181 private void addFilter(IConfiguration testConfig, String filter) { in addFilter() argument 182 List<IRemoteTest> tests = testConfig.getTests(); in addFilter() 187 testConfig.getName(), test.getClass().getSimpleName(), filter); in addFilter() 217 private void addDebugger(IConfiguration testConfig) { in addDebugger() argument 218 for (IRemoteTest test : testConfig.getTests()) { in addDebugger() [all …]
|
/tools/tradefederation/core/src/com/android/tradefed/testtype/suite/ |
D | TfSuiteRunner.java | 135 IConfiguration testConfig = in loadTests() local 137 if (testConfig.getConfigurationDescription().getSuiteTags().contains(mSuiteTag)) { in loadTests() 140 if (canRunMultipleAbis(testConfig)) { in loadTests() 149 testConfig = in loadTests() 153 for (IRemoteTest test : testConfig.getTests()) { in loadTests() 158 for (ITargetPreparer preparer : testConfig.getTargetPreparers()) { in loadTests() 164 testConfig.getMultiTargetPreparers()) { in loadTests() 171 configNameAbi, testConfig, parentConfig, graph); in loadTests() 176 expandTestSuites(configName, testConfig, parentConfig, graph); in loadTests() 189 private boolean canRunMultipleAbis(IConfiguration testConfig) { in canRunMultipleAbis() argument [all …]
|
/tools/tradefederation/core/tests/src/com/android/tradefed/testtype/suite/ |
D | ITestSuiteTest.java | 154 LinkedHashMap<String, IConfiguration> testConfig = new LinkedHashMap<>(); in loadTests() local 164 testConfig.put(TEST_CONFIG_NAME, config); in loadTests() 171 testConfig.put(TEST_CONFIG_NAME + i, extraConfig); in loadTests() 177 return testConfig; in loadTests() 656 LinkedHashMap<String, IConfiguration> testConfig = new LinkedHashMap<>(); in testRun_unresponsiveDevice() 668 testConfig.put(TEST_CONFIG_NAME, fake); in testRun_unresponsiveDevice() 673 return testConfig; in testRun_unresponsiveDevice() 717 LinkedHashMap<String, IConfiguration> testConfig = new LinkedHashMap<>(); in testRun_deviceUnavailable() 726 testConfig.put(TEST_CONFIG_NAME, fake); in testRun_deviceUnavailable() 731 testConfig.put("NOT_RUN", new Configuration("test", "test")); in testRun_deviceUnavailable() [all …]
|
D | ITestSuiteMultiTest.java | 82 LinkedHashMap<String, IConfiguration> testConfig = new LinkedHashMap<>(); in loadTests() local 100 testConfig.put(TEST_CONFIG_NAME + i, extraConfig); in loadTests() 106 return testConfig; in loadTests()
|
D | ITestSuiteIntegrationTest.java | 202 LinkedHashMap<String, IConfiguration> testConfig = new LinkedHashMap<>(); in loadTests() local 211 testConfig.put(configFile.getName().replace(".config", ""), config); in loadTests() 223 return testConfig; in loadTests()
|
D | TestMappingSuiteRunnerTest.java | 163 LinkedHashMap<String, IConfiguration> testConfig = new LinkedHashMap<>(); in loadingStrategy() local 170 testConfig.put(TEST_CONFIG_NAME, config); in loadingStrategy() 175 return testConfig; in loadingStrategy()
|
D | TfSuiteRunnerTest.java | 277 File testConfig = new File(zipDir, "test1.config"); in testLoadTests_additionalTestsZip() local 278 FileUtil.writeToFile(TEST_CONFIG, testConfig); in testLoadTests_additionalTestsZip()
|