Bug 1482151 - run wasm-misc in baseline and ion optional modes. r=ahal

move wasm-misc and unity3d benchmarks to tier2; run wasm-misc in different preferences

Differential Revision: https://phabricator.services.mozilla.com/D3903

--HG--
extra : moz-landing-system : lando
This commit is contained in:
Joel Maher 2018-08-21 18:21:40 +00:00
Родитель a52997851e
Коммит 265d508303
5 изменённых файлов: 68 добавлений и 4 удалений

Просмотреть файл

@ -199,7 +199,6 @@ raptor-unity-webgl-firefox:
try-name: raptor-unity-webgl-firefox
treeherder-symbol: Rap(ugl)
run-on-projects: ['try', 'mozilla-central']
tier: 3
max-run-time: 3600
mozharness:
extra-options:
@ -213,7 +212,6 @@ raptor-unity-webgl-chrome:
try-name: raptor-unity-webgl-chrome
treeherder-symbol: Rap-C(ugl)
run-on-projects: ['try', 'mozilla-central']
tier: 3
max-run-time: 3600
mozharness:
extra-options:
@ -228,7 +226,6 @@ raptor-wasm-misc-firefox:
try-name: raptor-wasm-misc-firefox
treeherder-symbol: Rap(wm)
run-on-projects: ['try', 'mozilla-central']
tier: 3
max-run-time: 1800
mozharness:
extra-options:
@ -237,12 +234,37 @@ raptor-wasm-misc-firefox:
fetch:
- wasm-misc
raptor-wasm-misc-baseline-firefox:
description: "Raptor WASM Misc on Firefox with baseline JIT"
try-name: raptor-wasm-misc-baseline-firefox
treeherder-symbol: Rap(wm-b)
run-on-projects: ['try', 'mozilla-central']
max-run-time: 1800
mozharness:
extra-options:
- --test=raptor-wasm-misc-baseline
fetches:
fetch:
- wasm-misc
raptor-wasm-misc-ion-firefox:
description: "Raptor WASM Misc on Firefox with ION Monkey"
try-name: raptor-wasm-misc-ion-firefox
treeherder-symbol: Rap(wm-i)
run-on-projects: ['try', 'mozilla-central']
max-run-time: 1800
mozharness:
extra-options:
- --test=raptor-wasm-misc-ion
fetches:
fetch:
- wasm-misc
raptor-wasm-misc-chrome:
description: "Raptor WASM Misc on Chrome"
try-name: raptor-wasm-misc-chrome
treeherder-symbol: Rap-C(wm)
run-on-projects: ['try', 'mozilla-central']
tier: 3
max-run-time: 1800
mozharness:
extra-options:

Просмотреть файл

@ -108,6 +108,8 @@ raptor-chrome:
raptor-fetch-firefox:
- raptor-unity-webgl-firefox
- raptor-wasm-misc-firefox
- raptor-wasm-misc-baseline-firefox
- raptor-wasm-misc-ion-firefox
raptor-fetch-chrome:
- raptor-unity-webgl-chrome

Просмотреть файл

@ -9,4 +9,6 @@
[include:tests/raptor-webaudio.ini]
[include:tests/raptor-gdocs.ini]
[include:tests/raptor-wasm-misc.ini]
[include:tests/raptor-wasm-misc-baseline.ini]
[include:tests/raptor-wasm-misc-ion.ini]
[include:tests/raptor-assorted-dom.ini]

Просмотреть файл

@ -0,0 +1,19 @@
# This Source Code Form is subject to the terms of the Mozilla Public
# License, v. 2.0. If a copy of the MPL was not distributed with this
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
# Wasm-Misc benchmark for firefox and chrome
[DEFAULT]
type = benchmark
test_url = http://localhost:<port>/wasm-misc/index.html?raptor
page_cycles = 5
page_timeout = 1200000
unit = ms
lower_is_better = true
alert_threshold = 2.0
[raptor-wasm-misc-baseline-firefox]
apps = firefox
preferences = {"javascript.options.wasm_baselinejit": true,
"javascript.options.wasm_ionjit": false}

Просмотреть файл

@ -0,0 +1,19 @@
# This Source Code Form is subject to the terms of the Mozilla Public
# License, v. 2.0. If a copy of the MPL was not distributed with this
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
# Wasm-Misc benchmark for firefox and chrome
[DEFAULT]
type = benchmark
test_url = http://localhost:<port>/wasm-misc/index.html?raptor
page_cycles = 5
page_timeout = 1200000
unit = ms
lower_is_better = true
alert_threshold = 2.0
[raptor-wasm-misc-ion-firefox]
apps = firefox
preferences = {"javascript.options.wasm_baselinejit": false,
"javascript.options.wasm_ionjit": true}