Index: testing/test_env.py |
diff --git a/testing/test_env.py b/testing/test_env.py |
index 3ff56dc120a722e6699b0f4934962ed99c49f04b..5f94326a9d198edd2cadc49e74e996931732f201 100755 |
--- a/testing/test_env.py |
+++ b/testing/test_env.py |
@@ -126,6 +126,9 @@ def run_executable(cmd, env): |
if asan: |
extra_env.update(get_asan_env(cmd, lsan)) |
+ # ASan is not yet sandbox-friendly on Windows (http://crbug.com/382867). |
+ if sys.platform == 'win32': |
+ cmd.append('--no-sandbox') |
if lsan: |
cmd.append('--no-sandbox') |