/test/suite_harness/common/host-side/tradefed/tests/src/com/android/compatibility/common/tradefed/build/ |
D | CompatibilityBuildProviderTest.java | 82 IBuildInfo info = mProvider.getBuild(mMockDevice); in testBaseGetBuild() local 84 assertTrue(info instanceof IDeviceBuildInfo); in testBaseGetBuild() 86 assertNotNull(((IDeviceBuildInfo)info).getTestsDir()); in testBaseGetBuild() 105 IBuildInfo info = mProvider.getBuild(mMockDevice); in testBaseGetBuild_withDevice() local 106 assertTrue(info instanceof IDeviceBuildInfo); in testBaseGetBuild_withDevice() 108 assertNotNull(((IDeviceBuildInfo)info).getTestsDir()); in testBaseGetBuild_withDevice() 110 mProvider.cleanUp(info); in testBaseGetBuild_withDevice() 111 assertNotNull(((IDeviceBuildInfo) info).getTestsDir()); in testBaseGetBuild_withDevice() 129 IBuildInfo info = mProvider.getBuild(mMockDevice); in testBaseGetBuild_withDeviceAndBuildFlavorPrefix() local 130 assertTrue(info instanceof IDeviceBuildInfo); in testBaseGetBuild_withDeviceAndBuildFlavorPrefix() [all …]
|
/test/suite_harness/common/host-side/tradefed/src/com/android/compatibility/common/tradefed/build/ |
D | CompatibilityBuildProvider.java | 191 IBuildInfo info = new DeviceBuildInfo(mBuildId, mBuildTarget); in getBuild() local 201 info.setBuildBranch(mBranch); in getBuild() 202 info.setBuildFlavor(buildFlavor); in getBuild() 205 info.addBuildAttribute("build_alias", buildAlias); in getBuild() 207 injectBuildAttributes(info); in getBuild() 208 addCompatibilitySuiteInfo(info); in getBuild() 209 return info; in getBuild() 217 public void cleanUp(IBuildInfo info) { in cleanUp() argument 219 if (info instanceof IDeviceBuildInfo) { in cleanUp() 222 doNotDelete.add(((IDeviceBuildInfo) info).getTestsDir()); in cleanUp() [all …]
|
/test/suite_harness/common/host-side/util/src/com/android/compatibility/common/util/ |
D | PackageUtil.java | 37 PackageInfo info = device.getAppPackageInfo(packageName); in isSystemApp() local 38 return (info != null) && info.isSystemApp(); in isSystemApp() 44 PackageInfo info = device.getAppPackageInfo(packageName); in getVersionString() local 45 return (info != null) ? info.getVersionName() : null; in getVersionString()
|
D | DynamicConfigHostSide.java | 67 public static File getDynamicConfigFile(IBuildInfo info, String moduleName) { in getDynamicConfigFile() argument 68 for (VersionedFile vFile : info.getFiles()) { in getDynamicConfigFile()
|
/test/vts-testcase/security/system_property/ |
D | vts_treble_sys_prop_test.py | 178 logging.info("Delete %s", self._temp_dir) 217 logging.info("Checking existence of %s", contexts_path) 223 logging.info("Adb pull %s to %s", contexts_path, self._temp_dir) 231 logging.info("Found %d property names in %s property contexts", 252 logging.info("adb pull %s to %s", property_contexts_file, downloaded) 256 logging.info("Found %d properties from %s", 279 logging.info("Skip test for a device which launched first before " 292 logging.info("Skip test for a device which launched first before " 296 logging.info("Skip test for a device which doesn't have an odm " 308 logging.info("Skip test for a device which launched first before " [all …]
|
/test/suite_harness/common/host-side/tradefed/tests/res/testdata/ |
D | test_list.txt | 1 dEQP-GLES3.info.vendor 2 dEQP-GLES3.info.renderer 3 dEQP-GLES3.info.version
|
D | log_1.qpa | 1 #beginTestCaseResult dEQP-VK.info.build 3 <TestCaseResult Version="0.3.4" CasePath="dEQP-VK.info.build" CaseType="SelfValidate"> 17 #beginTestCaseResult dEQP-VK.info.device 19 <TestCaseResult Version="0.3.4" CasePath="dEQP-VK.info.device" CaseType="SelfValidate"> 33 #beginTestCaseResult dEQP-VK.info.platform 35 <TestCaseResult Version="0.3.4" CasePath="dEQP-VK.info.platform" CaseType="SelfValidate">
|
D | log_2.qpa | 1 #beginTestCaseResult dEQP-VK.info.build 3 <TestCaseResult Version="0.3.4" CasePath="dEQP-VK.info.build" CaseType="SelfValidate"> 17 #beginTestCaseResult dEQP-VK.info.device 19 <TestCaseResult Version="0.3.4" CasePath="dEQP-VK.info.device" CaseType="SelfValidate">
|
/test/vts-testcase/nbu/src/ |
D | ble_test.py | 152 advertiser.log.info('BLE advertising started') 169 scanner.log.info('Advertiser is found') 185 scanner.log.info('BLE scanning stopped') 188 advertiser.log.info('BLE advertising stopped') 219 server.log.info('BLE server started') 229 client.log.info('BLE client connected') 262 server.log.info('BLE server started') 270 client.log.info('BLE client cancel open') 281 client.log.info('BLE client connected') 304 client.log.info('BLE client disconnected') [all …]
|
D | bluetooth_test.py | 72 self.receiver.log.info('Start Rfcomm server with name: %s uuid: %s' % 75 self.receiver.log.info('Become discoverable with name "%s" for %ds.', 78 self.initiator.log.info('Looking for Bluetooth devices.') 81 self.initiator.log.info('Target device is found. Device: %s' 87 self.initiator.log.info('Connection established') 94 self.receiver.log.info('Received correct message from the other side')
|
D | wifi_direct_test.py | 48 self.group_owner.log.info('Wifi direct channel set.') 51 self.group_owner.log.info('Wifi direct group started as a temporary group.') 56 self.station.log.info('Network is found, connecting...') 60 self.station.log.info('Connected to the network') 63 self.group_owner.log.info('Wifi direct group removed')
|
D | local_hotspot_test.py | 50 self.ap.log.info('Local hotspot started') 56 self.station.log.info('Connected to the network %s.' 62 self.ap.log.info('Wifi state restored')
|
/test/suite_harness/common/host-side/tradefed/src/com/android/compatibility/common/tradefed/util/ |
D | DynamicConfigFileReader.java | 74 public static String getValueFromConfig(IBuildInfo info, String moduleName, String key) in getValueFromConfig() argument 76 CompatibilityBuildHelper helper = new CompatibilityBuildHelper(info); in getValueFromConfig() 93 public static List<String> getValuesFromConfig(IBuildInfo info, String moduleName, String key) in getValuesFromConfig() argument 95 CompatibilityBuildHelper helper = new CompatibilityBuildHelper(info); in getValuesFromConfig() 118 public static List<String> getValuesFromConfig(IBuildInfo info, List<String> suiteNames, in getValuesFromConfig() argument 121 CompatibilityBuildHelper helper = new CompatibilityBuildHelper(info); in getValuesFromConfig()
|
/test/vts-testcase/vndk/files/ |
D | vts_vndk_files_test.py | 63 logging.info("%s not found", dir_path) 126 logging.info("Skip the test as the device doesn't support %d-bit " 130 logging.info("Skip the test as VNDK runtime is not enforced on " 134 logging.info("Skip the test as the device does not require VNDK.") 137 logging.info("Skip the test as VNDK %s should be installed in " 156 logging.info("Skip the test as the device doesn't support %d-bit " 173 logging.info("Skip the test as the device doesn't support %d-bit "
|
/test/vts-testcase/kernel/encryption/ |
D | utils.cpp | 285 bool GetFilesystemInfo(const std::string &mountpoint, FilesystemInfo *info) { in GetFilesystemInfo() argument 286 if (!GetFsBlockDeviceAndType(mountpoint, &info->fs_blk_device, &info->type)) in GetFilesystemInfo() 289 if (!GetFilesystemUuid(info->fs_blk_device, info->type, &info->uuid)) in GetFilesystemInfo() 292 if (!GetRawBlockDevice(info->fs_blk_device, &info->raw_blk_device)) in GetFilesystemInfo() 295 GTEST_LOG_(INFO) << info->fs_blk_device << " is mounted on " << mountpoint in GetFilesystemInfo() 296 << " with type " << info->type << "; UUID is " in GetFilesystemInfo() 297 << BytesToHex(info->uuid.bytes) << ", raw block device is " in GetFilesystemInfo() 298 << info->raw_blk_device; in GetFilesystemInfo()
|
/test/vts-testcase/hal/treble/platform_version/ |
D | vts_treble_platform_version_test.py | 46 logging.info("sysprop %s undefined", prop) 51 logging.info("getprop {}={}".format(prop, result)) 61 logging.info("environment variable %s undefined", env) 66 logging.info("printenv {}:{}".format(env, result))
|
D | VtsTreblePlatformVersionTest.py | 46 logging.info("sysprop %s undefined", prop) 51 logging.info("getprop {}={}".format(prop, result)) 61 logging.info("environment variable %s undefined", env) 66 logging.info("printenv {}:{}".format(env, result))
|
/test/vts-testcase/kernel/ltp/testcase/tools/ |
D | ltp_test_cases.py | 141 logging.info("Ltp binary not exist in cmd of '%s'", commands) 165 logging.info('LTP scenario groups: %s', scenario_groups) 187 logging.info("[Parser] Skipping test case {}-{}. Reason: " 203 logging.info("[Parser] Skipping test case %s. Reason: " 208 logging.info('ltp_test_cases Load(): test_display_name = %s\n' 216 logging.info("[Parser] Skipping test case %s. Reason: " 243 logging.info("[Parser] Adding test case %s." % testcase.fullname)
|
/test/vts-testcase/vndk/abi/ |
D | vts_vndk_abi_test.py | 50 logging.info("Delete %s", self._temp_dir) 61 logging.info("%s doesn't exist. Create %s.", target_dir, host_dir) 67 logging.info("adb pull %s %s", target_dir, host_dir) 257 logging.info("%s: Not found on target", lib_name) 291 logging.info("%s: Pass", rel_path) 311 logging.info("Skip the test as the device doesn't support %d-bit " 315 logging.info("Skip the test as the device does not require VNDK.") 325 logging.info("Skip the test as VNDK should be installed in vendor "
|
/test/suite_harness/common/host-side/tradefed/tests/src/com/android/compatibility/common/tradefed/result/suite/ |
D | CertificationSuiteResultReporterTest.java | 55 IBuildInfo info = new BuildInfo(); in setUp() local 56 info.addBuildAttribute(CompatibilityBuildHelper.ROOT_DIR, mFakeDir.getAbsolutePath()); in setUp() 57 info.addBuildAttribute( in setUp() 60 mContext.addDeviceBuildInfo(ConfigurationDef.DEFAULT_DEVICE_NAME, info); in setUp() 63 new CompatibilityBuildHelper(info) { in setUp()
|
/test/vts/tests/kernel_proc_file_api_test/ |
D | vts_kernel_proc_file_api_test.py | 141 logging.info("incident_helper not present") 227 logging.info("/proc/uid/ directory does not exist and is optional") 231 logging.info('per-UID time_in_state files do not exist and are optional') 250 logging.info("file not present on non-ARM64 device") 291 logging.info("Skip test for 64-bit kernel.") 296 logging.info("%s does not exist and is optional." % filepath) 305 logging.info("Testing format of %s", filepath)
|
/test/vts-testcase/performance/binder_benchmark/ |
D | BinderPerformanceTest.py | 108 logging.info("Start to run the benchmark (%s bit mode)", bits) 119 logging.info("stderr: %s", results[const.STDERR][1]) 120 logging.info("stdout: %s", results[const.STDOUT][1])
|
/test/vts-testcase/hal/automotive/vehicle/V2_0/host/ |
D | VtsHalAutomotiveVehicleV2_0HostTest.py | 52 logging.info("system_uid: %s", system_uid) 67 logging.info("vehicle types: %s", self.vtypes) 81 logging.info("Failed to remove: %s", cmd_results) 91 logging.info("all supported properties: %s", self.configList) 134 logging.info("0x%x get request: %s", propertyId, vp) 137 logging.info("0x%x get response: %s, %s", propertyId, status, value) 165 logging.info("0x%x set request: %s", propertyId, vp) 168 logging.info("0x%x set response: %s", propertyId, status) 232 logging.info("HVAC_POWER_ON not supported") 258 logging.info("HVAC power on config request: %s", requestConfig) [all …]
|
/test/cts-root/hostsidetests/rollback/app/src/com/android/cts_root/rollback/host/app/ |
D | HostTestHelper.java | 76 rm.getAvailableRollbacks().stream().flatMap(info -> info.getPackages().stream()) in cleanUp() 77 .map(info -> info.getPackageName()).forEach(rm::expireRollbackForPackage); in cleanUp() 106 RollbackInfo info = RollbackUtils.getAvailableRollback(TestApp.A); in testRollbackDataPolicy_Phase2_Rollback() local 107 RollbackUtils.rollback(info.getRollbackId()); in testRollbackDataPolicy_Phase2_Rollback() 166 PackageInstaller.SessionInfo info = InstallUtils.getStagedSessionInfo(sessionId); in testExpireSession_Phase3_VerifyRollback() local 167 assertThat(info).isNull(); in testExpireSession_Phase3_VerifyRollback()
|
/test/vts-testcase/performance/hwbinder_benchmark/ |
D | HwBinderPerformanceTest.py | 110 logging.info( 126 logging.info("stderr: %s", results[const.STDERR][1]) 127 logging.info("stdout: %s", results[const.STDOUT][1])
|