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

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

Issue 2662863002: Add typ boilerplate to Telemetry-based GPU 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/gpu_tests/trace_integration_test.py ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/test/gpu/gpu_tests/webgl_conformance_integration_test.py
diff --git a/content/test/gpu/gpu_tests/webgl_conformance_integration_test.py b/content/test/gpu/gpu_tests/webgl_conformance_integration_test.py
index ddf994eaf6f79d654a908b9d9137d159dd424039..2dcaa9316464afd69f65a6310843d51de3c27565 100644
--- a/content/test/gpu/gpu_tests/webgl_conformance_integration_test.py
+++ b/content/test/gpu/gpu_tests/webgl_conformance_integration_test.py
@@ -4,6 +4,7 @@
import logging
import os
+import sys
from gpu_tests import gpu_integration_test
from gpu_tests import path_util
@@ -396,3 +397,7 @@ class WebGLConformanceIntegrationTest(gpu_integration_test.GpuIntegrationTest):
test_paths.append(test)
return test_paths
+
+def load_tests(loader, tests, pattern):
+ del loader, tests, pattern # Unused.
+ return gpu_integration_test.LoadAllTestsInModule(sys.modules[__name__])
« no previous file with comments | « content/test/gpu/gpu_tests/trace_integration_test.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698