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

Unified Diff: testing/test_env.py

Issue 903553004: Re-enable sandboxing on the Clang ASan Windows bots +tests (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 10 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 | « testing/buildbot/chromium.fyi.json ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: testing/test_env.py
diff --git a/testing/test_env.py b/testing/test_env.py
index 48cbac97ce42b70fc17367e373470a21063f4540..597ca2ab2343e92762f8665f8040e9bc802d63ae 100755
--- a/testing/test_env.py
+++ b/testing/test_env.py
@@ -185,10 +185,9 @@ def run_executable(cmd, env):
if asan or lsan or msan or tsan:
extra_env.update(get_sanitizer_env(cmd, asan, lsan, msan, tsan))
- if lsan or tsan or (asan and sys.platform == 'win32'):
- # ASan is not yet sandbox-friendly on Windows (http://crbug.com/382867).
- # LSan and TSan are not sandbox-friendly.
- cmd.append('--no-sandbox')
+ if lsan or tsan:
+ # LSan and TSan are not sandbox-friendly.
+ cmd.append('--no-sandbox')
cmd = trim_cmd(cmd)
« no previous file with comments | « testing/buildbot/chromium.fyi.json ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698