diff options
author | Vitaly Buka <vitalybuka@google.com> | 2017-07-01 04:23:47 +0000 |
---|---|---|
committer | Vitaly Buka <vitalybuka@google.com> | 2017-07-01 04:23:47 +0000 |
commit | 080118351bf3d00bb4f85c526d0ea07e0550a63c (patch) | |
tree | 23d48bd3a3ce119c33ec854a15495deb7819d9d5 | |
parent | 602afcf7e9865ae3db0e7399e1b3f14a90718a73 (diff) | |
download | bcm5719-llvm-080118351bf3d00bb4f85c526d0ea07e0550a63c.tar.gz bcm5719-llvm-080118351bf3d00bb4f85c526d0ea07e0550a63c.zip |
[asan] This Android lit workaround should not be needed as bug is fixed
llvm-svn: 306942
-rw-r--r-- | compiler-rt/test/asan/android_commands/android_common.py | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/compiler-rt/test/asan/android_commands/android_common.py b/compiler-rt/test/asan/android_commands/android_common.py index 1a295b7817a..41994bb87a1 100644 --- a/compiler-rt/test/asan/android_commands/android_common.py +++ b/compiler-rt/test/asan/android_commands/android_common.py @@ -37,8 +37,5 @@ def pull_from_device(path): return text def push_to_device(path): - # Workaround for https://code.google.com/p/android/issues/detail?id=65857 dst_path = os.path.join(ANDROID_TMPDIR, os.path.basename(path)) - tmp_path = dst_path + '.push' - adb(['push', path, tmp_path], 5) - adb(['shell', 'cp "%s" "%s" 2>&1' % (tmp_path, dst_path)], 5) + adb(['push', path, dst_path], 5) |