Home
last modified time | relevance | path

Searched refs:filteredGlobalConfig (Results 1 – 3 of 3) sorted by relevance

/tools/tradefederation/core/tests/src/com/android/tradefed/config/
DGlobalConfigurationTest.java183 IGlobalConfiguration filteredGlobalConfig = in testCreateGlobalConfiguration_cloneConfigWithFilterByDefault() local
187 assertNotNull(filteredGlobalConfig); in testCreateGlobalConfiguration_cloneConfigWithFilterByDefault()
188 assertNotNull(filteredGlobalConfig.getKeyStoreFactory()); in testCreateGlobalConfiguration_cloneConfigWithFilterByDefault()
189 assertNotNull(filteredGlobalConfig.getHostOptions()); in testCreateGlobalConfiguration_cloneConfigWithFilterByDefault()
190 filteredGlobalConfig.validateOptions(); in testCreateGlobalConfiguration_cloneConfigWithFilterByDefault()
192 assertNull(filteredGlobalConfig.getDeviceMonitors()); in testCreateGlobalConfiguration_cloneConfigWithFilterByDefault()
193 assertNull(filteredGlobalConfig.getWtfHandler()); in testCreateGlobalConfiguration_cloneConfigWithFilterByDefault()
194 assertNull(filteredGlobalConfig.getConfigurationObject("remote-manager")); in testCreateGlobalConfiguration_cloneConfigWithFilterByDefault()
228 IGlobalConfiguration filteredGlobalConfig = in testCreateGlobalConfiguration_cloneConfigWithFilter() local
232 assertNotNull(filteredGlobalConfig); in testCreateGlobalConfiguration_cloneConfigWithFilter()
[all …]
/tools/tradefederation/core/src/com/android/tradefed/config/
DGlobalConfiguration.java784 File filteredGlobalConfig = FileUtil.createTempFile("filtered_global_config", ".config"); in cloneConfigWithFilter() local
785 KXmlSerializer serializer = ConfigurationUtil.createSerializer(filteredGlobalConfig); in cloneConfigWithFilter()
809 return filteredGlobalConfig; in cloneConfigWithFilter()
/tools/tradefederation/core/src/com/android/tradefed/testtype/
DSubprocessTfLauncher.java187 File filteredGlobalConfig = in preRun() local
189 mFilteredGlobalConfig = filteredGlobalConfig.getAbsolutePath(); in preRun()