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

Unified Diff: mojo/tools/get_test_list.py

Issue 774943007: Two tweaks for asan builds (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: Created 6 years 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 | « no previous file | mojo/tools/mojob.py » ('j') | mojo/tools/mojob.py » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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",
« no previous file with comments | « no previous file | mojo/tools/mojob.py » ('j') | mojo/tools/mojob.py » ('J')

Powered by Google App Engine
This is Rietveld 408576698