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..e6aece1f43f4c0cad7fed8d96d956f67c60ffdb6 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): |
+ # 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"): |
+ "python") and \ |
viettrungluu
2014/12/03 22:15:59
I read a Python style guide, and learned that \'s
sky
2014/12/03 23:15:15
Done.
|
+ config.sanitizer != Config.SANITIZER_ASAN: |
AddEntry("Python bindings tests", |
["python", |
os.path.join("mojo", "tools", |