summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSnild Dolkow <snild@sony.com>2020-10-07 08:32:53 +0000
committerAutomerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>2020-10-07 08:32:53 +0000
commit86bc52725f8ef0975124a0bce7d8a39fd6c22f61 (patch)
tree687c1579dfa46edb1c1fefbd4e281c590455cc6a
parent37fa1f3956df486a20d85089754fa68b7854a221 (diff)
parent2a340149a6ea44461a936d529c6c60c6d6a8927d (diff)
downloadvndk-86bc52725f8ef0975124a0bce7d8a39fd6c22f61.tar.gz
Disable compression in AdbPull() am: cfcccf314d am: 1ef9b569e5 am: 2a340149a6
Original change: https://android-review.googlesource.com/c/platform/test/vts-testcase/vndk/+/1448915 Change-Id: I5f5ec60d21aeda9b84a374fa7e207ca065ee4733
-rw-r--r--utils.py5
1 files changed, 4 insertions, 1 deletions
diff --git a/utils.py b/utils.py
index 5fae388..8bf00f3 100644
--- a/utils.py
+++ b/utils.py
@@ -32,7 +32,10 @@ class AndroidDevice(object):
def AdbPull(self, src, dst):
cmd = ["adb", "-s", self._serial_number, "pull", src, dst]
- subprocess.check_call(cmd, shell=False, stdin=subprocess.PIPE,
+ env = os.environ.copy()
+ if "ADB_COMPRESSION" not in env:
+ env["ADB_COMPRESSION"] = "0"
+ subprocess.check_call(cmd, shell=False, env=env, stdin=subprocess.PIPE,
stdout=subprocess.PIPE, stderr=subprocess.PIPE)
def Execute(self, *args):