summaryrefslogtreecommitdiffstats
path: root/testing
diff options
context:
space:
mode:
authorJohn Abd-El-Malek <jam@chromium.org>2014-10-09 09:10:54 -0700
committerJohn Abd-El-Malek <jam@chromium.org>2014-10-09 16:12:57 +0000
commit20039843f3f019137b8fadccd48c1d5db8ca883c (patch)
tree656aa22c993cdc4ca95ad1b028de434e39b9da63 /testing
parent2f6d322b526ced2ffedb55af29179a87fbae4635 (diff)
downloadchromium_src-20039843f3f019137b8fadccd48c1d5db8ca883c.zip
chromium_src-20039843f3f019137b8fadccd48c1d5db8ca883c.tar.gz
chromium_src-20039843f3f019137b8fadccd48c1d5db8ca883c.tar.bz2
Fix Linux ASAN bots failing.
My previous change to test_env.py broken this. BUG=414808 TBR=maruel@chromium.org Review URL: https://codereview.chromium.org/641113003 Cr-Commit-Position: refs/heads/master@{#298888}
Diffstat (limited to 'testing')
-rwxr-xr-xtesting/test_env.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/testing/test_env.py b/testing/test_env.py
index d91d3c1..67b6d86 100755
--- a/testing/test_env.py
+++ b/testing/test_env.py
@@ -85,7 +85,7 @@ def run_executable(cmd, env):
if lsan and sys.platform == 'linux2':
# Use the debug version of libstdc++ under LSan. If we don't, there will
# be a lot of incomplete stack traces in the reports.
- env['LD_LIBRARY_PATH'] += '/usr/lib/x86_64-linux-gnu/debug:'
+ env['LD_LIBRARY_PATH'] = '/usr/lib/x86_64-linux-gnu/debug:'
if asan and sys.platform == 'darwin':
isolate_output_dir = os.path.abspath(os.path.dirname(cmd[0]))