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

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

Issue 560153004: Telemetry: Fix exact_matches in telemetry.test_runner. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: move memory.py to memory_test.py to make the autogenerated name match the buildbot config Created 6 years, 3 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/memory.py ('k') | content/test/gpu/gpu_tests/memory_test.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/test/gpu/gpu_tests/memory_expectations.py
diff --git a/content/test/gpu/gpu_tests/memory_expectations.py b/content/test/gpu/gpu_tests/memory_expectations.py
deleted file mode 100644
index 0b2cce0a123198b72fe843cac7c03bc6c6e32828..0000000000000000000000000000000000000000
--- a/content/test/gpu/gpu_tests/memory_expectations.py
+++ /dev/null
@@ -1,35 +0,0 @@
-# Copyright 2014 The Chromium Authors. All rights reserved.
-# Use of this source code is governed by a BSD-style license that can be
-# found in the LICENSE file.
-
-from telemetry.page import test_expectations
-
-# Valid expectation conditions are:
-#
-# Operating systems:
-# win, xp, vista, win7, mac, leopard, snowleopard, lion, mountainlion,
-# linux, chromeos, android
-#
-# GPU vendors:
-# amd, arm, broadcom, hisilicon, intel, imagination, nvidia, qualcomm,
-# vivante
-#
-# Specific GPUs can be listed as a tuple with vendor name and device ID.
-# Examples: ('nvidia', 0x1234), ('arm', 'Mali-T604')
-# Device IDs must be paired with a GPU vendor.
-
-class MemoryExpectations(test_expectations.TestExpectations):
- def SetExpectations(self):
- # Sample Usage:
- # self.Fail('Memory.CSS3D',
- # ['mac', 'amd', ('nvidia', 0x1234)], bug=123)
-
- self.Fail('Memory.CSS3D', ['mac', ('nvidia', 0x0fd5)], bug=368037)
-
- # TODO(vmpstr): Memory drops and increases again, and this
- # particular bot happens to catch it when its low. Remove
- # once the bug is fixed.
- self.Fail('Memory.CSS3D', ['win'], bug=373098)
-
- # Test has turned flaky on Linux also. Remove once the bug is fixed.
- self.Fail('Memory.CSS3D', ['linux'], bug=373098)
« no previous file with comments | « content/test/gpu/gpu_tests/memory.py ('k') | content/test/gpu/gpu_tests/memory_test.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698