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

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: review feedback 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') | no next file with comments »
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..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",
« no previous file with comments | « no previous file | mojo/tools/mojob.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698