зеркало из https://github.com/mozilla/gecko-dev.git
Bug 1625927 - Enable multi-value on nightly r=lth
Now that multi-value is code-complete, we enable it on nightly browsers in addition to shell builds. Differential Revision: https://phabricator.services.mozilla.com/D68791 --HG-- extra : moz-landing-system : lando
This commit is contained in:
Родитель
89d53381ee
Коммит
05b61b956c
|
@ -596,9 +596,9 @@ set_define('WASM_PRIVATE_REFTYPES', depends_if('--enable-wasm-private-reftypes')
|
|||
# Do not remove until Cranelift supports multi-value.
|
||||
# =====================================================
|
||||
|
||||
@depends(milestone.is_nightly, building_js)
|
||||
def default_wasm_multi_value(is_nightly, building_js):
|
||||
return is_nightly and building_js
|
||||
@depends(milestone.is_nightly)
|
||||
def default_wasm_multi_value(is_nightly):
|
||||
return is_nightly
|
||||
|
||||
js_option('--enable-wasm-multi-value',
|
||||
default=default_wasm_multi_value,
|
||||
|
|
|
@ -1,12 +1,15 @@
|
|||
[multi-value.any.html]
|
||||
[multiple return values from wasm to js]
|
||||
expected: FAIL
|
||||
expected:
|
||||
if not nightly_build: FAIL
|
||||
|
||||
[multiple return values inside wasm]
|
||||
expected: FAIL
|
||||
expected:
|
||||
if not nightly_build: FAIL
|
||||
|
||||
[multiple return values from js to wasm]
|
||||
expected: FAIL
|
||||
expected:
|
||||
if not nightly_build: FAIL
|
||||
|
||||
|
||||
[multi-value.any.js]
|
||||
|
@ -25,11 +28,14 @@
|
|||
|
||||
[multi-value.any.worker.html]
|
||||
[multiple return values from wasm to js]
|
||||
expected: FAIL
|
||||
expected:
|
||||
if not nightly_build: FAIL
|
||||
|
||||
[multiple return values inside wasm]
|
||||
expected: FAIL
|
||||
expected:
|
||||
if not nightly_build: FAIL
|
||||
|
||||
[multiple return values from js to wasm]
|
||||
expected: FAIL
|
||||
expected:
|
||||
if not nightly_build: FAIL
|
||||
|
||||
|
|
Загрузка…
Ссылка в новой задаче