summaryrefslogtreecommitdiffstats
path: root/tools/perf_expectations
diff options
context:
space:
mode:
authorchase@chromium.org <chase@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-09-24 15:17:49 +0000
committerchase@chromium.org <chase@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-09-24 15:17:49 +0000
commita9179ca479aed14edc4780de57108e5fccfcf7a8 (patch)
tree6a9b8c40ac674c6642f7c7a5c16c937f2d9c6576 /tools/perf_expectations
parent81762dde0dd66ae2eed6f45859e6f79154419819 (diff)
downloadchromium_src-a9179ca479aed14edc4780de57108e5fccfcf7a8.zip
chromium_src-a9179ca479aed14edc4780de57108e5fccfcf7a8.tar.gz
chromium_src-a9179ca479aed14edc4780de57108e5fccfcf7a8.tar.bz2
Expectations for 3 perf systems on morejs and startup.
Set the perf expectations on linux, mac, and windows perf systems for the morejs and warm startup tests. Update comment in the perf_expectations unit test regex. BUG=18597 TEST=build.chromium.org perf slaves stay green Review URL: http://codereview.chromium.org/231017 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@27068 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'tools/perf_expectations')
-rw-r--r--tools/perf_expectations/perf_expectations.json10
-rwxr-xr-xtools/perf_expectations/tests/perf_expectations_unittest.py2
2 files changed, 9 insertions, 3 deletions
diff --git a/tools/perf_expectations/perf_expectations.json b/tools/perf_expectations/perf_expectations.json
index 1034d79..46c0417 100644
--- a/tools/perf_expectations/perf_expectations.json
+++ b/tools/perf_expectations/perf_expectations.json
@@ -1,4 +1,8 @@
-{"linux-release-hardy/morejs/times/t": {"delta": 200, "var": 65},
- "linux-release-hardy/startup/warm/t": {"delta": 200, "var": 12},
- "load": false
+{"linux-release-hardy/morejs/times/t": {"delta": 0, "var": 70},
+ "linux-release-hardy/startup/warm/t": {"delta": 0, "var": 15},
+ "mac-release-10.5/morejs/times/t": {"delta": -30, "var": 60},
+ "mac-release-10.5/startup/warm/t": {"delta": -155, "var": 20},
+ "xp-release-dual-core/morejs/times/t": {"delta": 50, "var": 20},
+ "xp-release-dual-core/startup/warm/t": {"delta": -30, "var": 10},
+ "load": true
}
diff --git a/tools/perf_expectations/tests/perf_expectations_unittest.py b/tools/perf_expectations/tests/perf_expectations_unittest.py
index 47c25d1..88b8251 100755
--- a/tools/perf_expectations/tests/perf_expectations_unittest.py
+++ b/tools/perf_expectations/tests/perf_expectations_unittest.py
@@ -121,6 +121,8 @@ class PerfExpectationsUnittest(unittest.TestCase):
for key in perf_data:
if key == 'load':
continue
+ # tools/buildbot/scripts/master/log_parser.py should have a matching
+ # regular expression.
if not re.match(r"^([\w\.-]+)/([\w\.-]+)/([\w\.-]+)/([\w\.-]+)$", key):
bad_keys.append(key)
if len(bad_keys) > 0: