Index: mojo/tools/get_test_list.py |
diff --git a/mojo/tools/get_test_list.py b/mojo/tools/get_test_list.py |
index 52bdfcce86f62c80aaa9b20911eb48c41a02c04a..df8de703ba40a539205c1655d3f44ba07ec615bd 100755 |
--- a/mojo/tools/get_test_list.py |
+++ b/mojo/tools/get_test_list.py |
@@ -96,9 +96,11 @@ def GetTestList(config): |
"run_mojo_python_tests.py")]) |
# Python bindings tests (Linux-only): |
- if target_os == Config.OS_LINUX and ShouldRunTest(Config.TEST_TYPE_DEFAULT, |
- Config.TEST_TYPE_UNIT, |
- "python"): |
+ # See http://crbug.com/438781 for details on asan exclusion. |
+ if (target_os == Config.OS_LINUX and |
+ ShouldRunTest(Config.TEST_TYPE_DEFAULT, Config.TEST_TYPE_UNIT, |
+ "python") and |
+ config.sanitizer != Config.SANITIZER_ASAN): |
AddEntry("Python bindings tests", |
["python", |
os.path.join("mojo", "tools", |