Merge "adb: make the test_pull_dir test actually test something." am: f31aba9e8d

am: e0dcc75107

* commit 'e0dcc751072591e471a489e18d2d30abc045ffa4':
  adb: make the test_pull_dir test actually test something.
This commit is contained in:
Josh Gao 2015-12-10 15:42:48 -08:00 committed by android-build-merger
commit 0f871e8257
1 changed files with 4 additions and 1 deletions

View File

@ -819,7 +819,10 @@ class FileOperationsTest(DeviceTest):
self.device.pull(remote=self.DEVICE_TEMP_DIR, local=host_dir)
for temp_file in temp_files:
host_path = os.path.join(host_dir, temp_file.base_name)
host_path = os.path.join(
host_dir, posixpath.basename(self.DEVICE_TEMP_DIR),
temp_file.base_name)
self._verify_local(temp_file.checksum, host_path)
self.device.shell(['rm', '-rf', self.DEVICE_TEMP_DIR])
finally: