[wasm] update spec tests

Update the WebAssembly spec tests.

Additional changes:
* Enable tests that pass now: some proposals had out-dated tests. With
  the proposals being rebased, these tests pass now.
* Run the multi-value proposal tests with
  --no-experimental-wasm-bulk-memory. We already enabled bulk-memory by
  default, but it includes some breaking changes.

R=thibaudm@chromium.org

Bug: v8:9673
Change-Id: Ic6de44fc01cee640c741d825dc70b1bdfb1297f4
Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/1890096
Reviewed-by: Thibaud Michaud <thibaudm@chromium.org>
Reviewed-by: Andreas Haas <ahaas@chromium.org>
Commit-Queue: Andreas Haas <ahaas@chromium.org>
Cr-Commit-Position: refs/heads/master@{#64672}
This commit is contained in:
Andreas Haas 2019-10-30 15:19:45 +01:00 committed by Commit Bot
parent efc0c14dbd
commit 45b8e3e9be
5 changed files with 5 additions and 8 deletions

View File

@ -1 +1 @@
b25b394cf889494d03cfabcdc10445babb214b5c
974f634f67dcc2a525734c2d83bd9a8ea6f6777b

View File

@ -9,7 +9,7 @@
'proposals/reference-types/limits': [SKIP],
# TODO(v8:9673): Enable these spec tests once they exist, and the out-dated
# tests have been removed.
'proposals/JS-BigInt-integration/*': [SKIP],
'proposals/JS-BigInt-integration/module/params-long': [FAIL],
}], # ALWAYS
['arch == s390 or arch == s390x or system == aix', {

View File

@ -27,7 +27,8 @@ proposal_flags = [{
},
{
'name': 'multi-value',
'flags': ['--experimental-wasm-mv']
'flags': ['--experimental-wasm-mv',
'--no-experimental-wasm-bulk-memory']
},
]

View File

@ -1 +1 @@
41071e54dbc6341c62aaa365d775137164ecc971
d48bc18d580d1bb7bda1287ce27f65ff86b81851

View File

@ -17,16 +17,12 @@
'proposals/js-types/exports': [FAIL],
'proposals/js-types/globals': [FAIL],
'proposals/js-types/linking': [FAIL],
# TODO(v8:9673): Enable these spec tests once they exist, and the out-dated
# tests have been removed.
'proposals/JS-BigInt-integration/*': [SKIP],
# TODO(v8:9865): Throwing behavior changed for these tests.
'proposals/bulk-memory-operations/linking': [FAIL],
'proposals/bulk-memory-operations/bulk': [FAIL],
'proposals/bulk-memory-operations/elem': [FAIL],
'proposals/bulk-memory-operations/data': [FAIL],
# TODO(thibaudm): Spec tests do not check multi-return functions correctly.
'proposals/multi-value/elem': [FAIL],
'proposals/multi-value/call': [FAIL],
'proposals/multi-value/if': [FAIL],
'proposals/multi-value/func': [FAIL],