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

Unified Diff: content/test/gpu/PRESUBMIT.py

Issue 1923183003: [content/test/gpu] Rename _WebGLTextExpectationsTests to _GpuUnittestsArePassingCheck (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 8 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 | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/test/gpu/PRESUBMIT.py
diff --git a/content/test/gpu/PRESUBMIT.py b/content/test/gpu/PRESUBMIT.py
index da0d24fe639a5aa9c5805fbccee6b2c38d36f2b0..a5da32b01728840db76dcfdac594eff922311687 100644
--- a/content/test/gpu/PRESUBMIT.py
+++ b/content/test/gpu/PRESUBMIT.py
@@ -27,7 +27,7 @@ def _GetPathsToPrepend(input_api):
'third_party', 'catapult', 'catapult_base'),
]
-def _WebGLTextExpectationsTests(input_api, output_api):
+def _GpuUnittestsArePassingCheck(input_api, output_api):
if not input_api.AffectedFiles():
return []
@@ -58,13 +58,13 @@ def _WebGLTextExpectationsTests(input_api, output_api):
def CheckChangeOnUpload(input_api, output_api):
results = []
results.extend(_PyLintChecks(input_api, output_api))
- results.extend(_WebGLTextExpectationsTests(input_api, output_api))
+ results.extend(_GpuUnittestsArePassingCheck(input_api, output_api))
return results
def CheckChangeOnCommit(input_api, output_api):
results = []
results.extend(_PyLintChecks(input_api, output_api))
- results.extend(_WebGLTextExpectationsTests(input_api, output_api))
+ results.extend(_GpuUnittestsArePassingCheck(input_api, output_api))
return results
def PostUploadHook(cl, change, output_api):
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698