Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(557)

Unified Diff: build/android/pylib/valgrind_tools.py

Issue 870603002: Update asan_device_setup.sh from LLVM r226816. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: tbr, notry Created 5 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | tools/android/asan/asan_device_setup.sh » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: build/android/pylib/valgrind_tools.py
diff --git a/build/android/pylib/valgrind_tools.py b/build/android/pylib/valgrind_tools.py
index 46cf9e3e5fdc3b8e7b768bd698725f1543090ce8..99719d08114d26522c446eb66122a85756372747 100644
--- a/build/android/pylib/valgrind_tools.py
+++ b/build/android/pylib/valgrind_tools.py
@@ -116,11 +116,13 @@ class AddressSanitizerTool(BaseTool):
'lib/clang/*/lib/linux/',
'libclang_rt.asan-arm-android.so'))
assert len(libs) == 1
- subprocess.call([os.path.join(DIR_SOURCE_ROOT,
- 'tools/android/asan/asan_device_setup.sh'),
- '--device', str(device),
- '--lib', libs[0],
- '--extra-options', AddressSanitizerTool.EXTRA_OPTIONS])
+ subprocess.call(
+ [os.path.join(
+ DIR_SOURCE_ROOT,
+ 'tools/android/asan/third_party/asan_device_setup.sh'),
+ '--device', str(device),
+ '--lib', libs[0],
+ '--extra-options', AddressSanitizerTool.EXTRA_OPTIONS])
device.WaitUntilFullyBooted()
def GetTestWrapper(self):
« no previous file with comments | « no previous file | tools/android/asan/asan_device_setup.sh » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698