Commit 03441a1e authored by Maksim Sisov's avatar Maksim Sisov Committed by Commit Bot

ozone-linux: distinguish x11 and headless content_unittests.

This CL adds content_unittests for X11 with experimental
percentage set to 100% and different names for the one
running with headless and x11 backends.

Once we have weston in place, wayland will also be added.

Bug: 700309
Change-Id: I3ae0160028c4d94b8b81386240c824cf28483bb5
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1781438
Commit-Queue: Maksim Sisov <msisov@igalia.com>
Reviewed-by: default avatarScott Violet <sky@chromium.org>
Cr-Commit-Position: refs/heads/master@{#693103}
parent 846466d3
...@@ -5790,6 +5790,27 @@ ...@@ -5790,6 +5790,27 @@
"args": [], "args": [],
"script": "//testing/merge_scripts/standard_gtest_merge.py" "script": "//testing/merge_scripts/standard_gtest_merge.py"
}, },
"name": "headless_content_unittests",
"swarming": {
"can_use_on_swarming_builders": true,
"dimension_sets": [
{
"os": "Ubuntu-16.04"
}
]
},
"test": "content_unittests"
},
{
"args": [
"--ozone-platform=x11"
],
"experiment_percentage": 100,
"merge": {
"args": [],
"script": "//testing/merge_scripts/standard_gtest_merge.py"
},
"name": "x11_content_unittests",
"swarming": { "swarming": {
"can_use_on_swarming_builders": true, "can_use_on_swarming_builders": true,
"dimension_sets": [ "dimension_sets": [
......
...@@ -4409,10 +4409,18 @@ ...@@ -4409,10 +4409,18 @@
'services_unittests': {}, 'services_unittests': {},
'ozone_unittests': {}, 'ozone_unittests': {},
'ozone_x11_unittests': {}, 'ozone_x11_unittests': {},
'content_unittests': { 'headless_content_unittests': {
'args': [ 'args': [
'--ozone-platform=headless', '--ozone-platform=headless',
], ],
'test': 'content_unittests',
},
'x11_content_unittests': {
'experiment_percentage': 100,
'args': [
'--ozone-platform=x11',
],
'test': 'content_unittests',
}, },
}, },
......
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