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

[benchmarking] Disable two Win 10 perf tester from uploading perf data

This CL puts testers win-10-perf and win-10_laptop_low_end-perf in lightweight mode with '--skip-perf'.

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

Bug: chromium:1045256
Change-Id: I3cc891ec6bebaf4c1becb4d690e70dd3735d734e
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2219563Reviewed-by: default avatarJohn Chen <johnchen@chromium.org>
Commit-Queue: Wenbin Zhang <wenbinzhang@google.com>
Cr-Commit-Position: refs/heads/master@{#773750}
parent 63803049
...@@ -1064,6 +1064,10 @@ ...@@ -1064,6 +1064,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",
...@@ -1098,6 +1102,14 @@ ...@@ -1098,6 +1102,14 @@
} }
] ]
}, },
"win-10-processor-perf": {
"merge": {
"args": [
"--lightweight"
],
"script": "//tools/perf/process_perf_results.py"
}
},
"win-10_laptop_low_end-perf": { "win-10_laptop_low_end-perf": {
"isolated_scripts": [ "isolated_scripts": [
{ {
...@@ -1111,6 +1123,10 @@ ...@@ -1111,6 +1123,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",
...@@ -1144,6 +1160,14 @@ ...@@ -1144,6 +1160,14 @@
} }
] ]
}, },
"win-10_laptop_low_end-processor-perf": {
"merge": {
"args": [
"--lightweight"
],
"script": "//tools/perf/process_perf_results.py"
}
},
"win32-builder-perf": { "win32-builder-perf": {
"additional_compile_targets": [ "additional_compile_targets": [
"chromedriver" "chromedriver"
......
...@@ -95,8 +95,8 @@ class TEST_TYPES(object): ...@@ -95,8 +95,8 @@ class TEST_TYPES(object):
# 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 = [
'android-pixel2-perf', 'android-pixel2_webview-perf', 'linux-perf', 'android-pixel2-perf', 'android-pixel2_webview-perf', 'linux-perf',
'android-pixel2-perf-fyi', 'linux-perf-fyi', 'win-10-perf', 'win-10_laptop_low_end-perf', 'android-pixel2-perf-fyi',
'win-10_laptop_low_end-perf_HP-Candidate' 'linux-perf-fyi', 'win-10_laptop_low_end-perf_HP-Candidate'
] ]
FYI_BUILDERS = { FYI_BUILDERS = {
...@@ -622,6 +622,14 @@ BUILDERS = { ...@@ -622,6 +622,14 @@ BUILDERS = {
'platform': 'linux', 'platform': 'linux',
'perf_processor': True, 'perf_processor': True,
}, },
'win-10-processor-perf': {
'platform': 'linux',
'perf_processor': True,
},
'win-10_laptop_low_end-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