summaryrefslogtreecommitdiffstats
path: root/testing/test_env.py
diff options
context:
space:
mode:
authorearthdok <earthdok@chromium.org>2015-02-25 07:36:53 -0800
committerCommit bot <commit-bot@chromium.org>2015-02-25 15:38:08 +0000
commit1a979678a1d8b1e56e0457ef7f33bb60a38bdf82 (patch)
treeb01940167d9d85f34654bcd7cf02a1843db757bb /testing/test_env.py
parent3065103aefb405b07a054d95ddf591c6c6773094 (diff)
downloadchromium_src-1a979678a1d8b1e56e0457ef7f33bb60a38bdf82.zip
chromium_src-1a979678a1d8b1e56e0457ef7f33bb60a38bdf82.tar.gz
chromium_src-1a979678a1d8b1e56e0457ef7f33bb60a38bdf82.tar.bz2
Re-land r318035 "Remove LSan options/suppressions from test_env.py."
Those are now compiled into the executable. Also remove tools/lsan/ which used to house the suppressions file. Relanding with .isolate fix. BUG=302040 TBR=kjellander@chromium.org Review URL: https://codereview.chromium.org/952103003 Cr-Commit-Position: refs/heads/master@{#318051}
Diffstat (limited to 'testing/test_env.py')
-rwxr-xr-xtesting/test_env.py4
1 files changed, 0 insertions, 4 deletions
diff --git a/testing/test_env.py b/testing/test_env.py
index d19f74f..052df67 100755
--- a/testing/test_env.py
+++ b/testing/test_env.py
@@ -108,10 +108,6 @@ def get_sanitizer_env(cmd, asan, lsan, msan, tsan):
# be a lot of incomplete stack traces in the reports.
extra_env['LD_LIBRARY_PATH'] = '/usr/lib/x86_64-linux-gnu/debug:'
- suppressions_file = os.path.join(ROOT_DIR, 'tools', 'lsan',
- 'suppressions.txt')
- lsan_options += ['suppressions=%s' % suppressions_file,
- 'print_suppressions=1']
extra_env['LSAN_OPTIONS'] = ' '.join(lsan_options)
if msan: