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

Unified Diff: content/test/gpu/gpu_tests/screenshot_sync_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
Index: content/test/gpu/gpu_tests/screenshot_sync_integration_test.py
diff --git a/content/test/gpu/gpu_tests/screenshot_sync_integration_test.py b/content/test/gpu/gpu_tests/screenshot_sync_integration_test.py
index a73b4a88b34622e4eb035ed9a552b32166cbb9c6..e6c1dc8735bc25cf3cd8307e3e264ff85058a617 100644
--- a/content/test/gpu/gpu_tests/screenshot_sync_integration_test.py
+++ b/content/test/gpu/gpu_tests/screenshot_sync_integration_test.py
@@ -5,6 +5,7 @@
import logging
import os
import random
+import sys
from gpu_tests import gpu_integration_test
from gpu_tests import path_util
@@ -132,3 +133,7 @@ class ScreenshotSyncIntegrationTest(gpu_integration_test.GpuIntegrationTest):
repetitions = 20
for _ in range(0, repetitions):
self._CheckScreenshot()
+
+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/pixel_integration_test.py ('k') | content/test/gpu/gpu_tests/trace_integration_test.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698