Commit d51cd9f3 authored by Wenbin Zhang's avatar Wenbin Zhang Committed by Commit Bot

[benchmarking] Disable android pixel 2 perf and pixel 2 webview perf from uploading perf data

This CL puts the testers for android pixel 2 and pixel 2 webview in perf to 'lightweight' mode with 'skip-perf'.

In this case the tester will no longer upload the perf data.

Bug: chromium:1045256
Change-Id: Ib69183462f4530b208c3a410c4ed474199ecdc56
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2209615
Auto-Submit: Wenbin Zhang <wenbinzhang@google.com>
Reviewed-by: default avatarJohn Chen <johnchen@chromium.org>
Commit-Queue: John Chen <johnchen@chromium.org>
Cr-Commit-Position: refs/heads/master@{#771048}
parent 43c815a3
...@@ -528,6 +528,10 @@ ...@@ -528,6 +528,10 @@
], ],
"isolate_name": "performance_test_suite", "isolate_name": "performance_test_suite",
"merge": { "merge": {
"args": [
"--lightweight",
"--skip-perf"
],
"script": "//tools/perf/process_perf_results.py" "script": "//tools/perf/process_perf_results.py"
}, },
"name": "performance_test_suite", "name": "performance_test_suite",
...@@ -563,6 +567,14 @@ ...@@ -563,6 +567,14 @@
} }
] ]
}, },
"android-pixel2-processor-perf": {
"merge": {
"args": [
"--lightweight"
],
"script": "//tools/perf/process_perf_results.py"
}
},
"android-pixel2_weblayer-perf": { "android-pixel2_weblayer-perf": {
"isolated_scripts": [ "isolated_scripts": [
{ {
...@@ -620,6 +632,10 @@ ...@@ -620,6 +632,10 @@
], ],
"isolate_name": "performance_webview_test_suite", "isolate_name": "performance_webview_test_suite",
"merge": { "merge": {
"args": [
"--lightweight",
"--skip-perf"
],
"script": "//tools/perf/process_perf_results.py" "script": "//tools/perf/process_perf_results.py"
}, },
"name": "performance_webview_test_suite", "name": "performance_webview_test_suite",
...@@ -655,6 +671,14 @@ ...@@ -655,6 +671,14 @@
} }
] ]
}, },
"android-pixel2_webview-processor-perf": {
"merge": {
"args": [
"--lightweight"
],
"script": "//tools/perf/process_perf_results.py"
}
},
"android_arm64-builder-perf": { "android_arm64-builder-perf": {
"additional_compile_targets": [ "additional_compile_targets": [
"microdump_stackwalk", "microdump_stackwalk",
......
...@@ -94,7 +94,8 @@ class TEST_TYPES(object): ...@@ -94,7 +94,8 @@ class TEST_TYPES(object):
# The perf data will be handled on a separated 'processor' VM. # The perf data will be handled on a separated 'processor' VM.
# This list will be removed or replace by an opt-out list. # This list will be removed or replace by an opt-out list.
LIGHTWEIGHT_TESTERS = [ LIGHTWEIGHT_TESTERS = [
'linux-perf', 'android-pixel2-perf-fyi', 'linux-perf-fyi', 'android-pixel2-perf', 'android-pixel2_webview-perf', 'linux-perf',
'android-pixel2-perf-fyi', 'linux-perf-fyi',
'win-10_laptop_low_end-perf_HP-Candidate' 'win-10_laptop_low_end-perf_HP-Candidate'
] ]
...@@ -613,6 +614,14 @@ BUILDERS = { ...@@ -613,6 +614,14 @@ BUILDERS = {
'platform': 'linux', 'platform': 'linux',
'perf_processor': True, 'perf_processor': True,
}, },
'android-pixel2-processor-perf': {
'platform': 'linux',
'perf_processor': True,
},
'android-pixel2_webview-processor-perf': {
'platform': 'linux',
'perf_processor': True,
},
} }
# pylint: enable=line-too-long # pylint: enable=line-too-long
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment