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

Unified Diff: content/test/gpu/gpu_tests/gpu_test_expectations.py

Issue 2632603002: Add support for ASAN-specific test expectations to WebGL tests. (Closed)
Patch Set: Created 3 years, 11 months 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 | « content/test/gpu/generate_buildbot_json.py ('k') | content/test/gpu/gpu_tests/test_expectations.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/test/gpu/gpu_tests/gpu_test_expectations.py
diff --git a/content/test/gpu/gpu_tests/gpu_test_expectations.py b/content/test/gpu/gpu_tests/gpu_test_expectations.py
index 970ac3b676e25d6b1b09c2ed899e95e551bc3a9c..2dc995a871b1ed3e5ecddbeb4557a84ef8d5abcf 100644
--- a/content/test/gpu/gpu_tests/gpu_test_expectations.py
+++ b/content/test/gpu/gpu_tests/gpu_test_expectations.py
@@ -76,8 +76,9 @@ class GpuExpectation(test_expectations.Expectation):
class GpuTestExpectations(test_expectations.TestExpectations):
- def __init__(self, url_prefixes=None):
- super(GpuTestExpectations, self).__init__(url_prefixes=url_prefixes)
+ def __init__(self, url_prefixes=None, is_asan=False):
+ super(GpuTestExpectations, self).__init__(
+ url_prefixes=url_prefixes, is_asan=is_asan)
def CreateExpectation(self, expectation, pattern, conditions=None,
bug=None):
« no previous file with comments | « content/test/gpu/generate_buildbot_json.py ('k') | content/test/gpu/gpu_tests/test_expectations.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698