0e9e8164c2
Fix WebAssembly's table/get-set js-api. The argument is a unsigned long, this change refactors most of arithmetic and bounds checks type from int64 to uint32_t, according to the spec. Bug: v8:8319 Change-Id: I088f631c6805b0e5ba29089b08ea15e78fe5852d Cq-Include-Trybots: luci.chromium.try:linux-blink-rel Reviewed-on: https://chromium-review.googlesource.com/c/1414914 Reviewed-by: Adam Klein <adamk@chromium.org> Reviewed-by: Deepti Gandluri <gdeepti@chromium.org> Commit-Queue: Sven Sauleau <ssauleau@igalia.com> Cr-Commit-Position: refs/heads/master@{#58941}
29 lines
810 B
Plaintext
29 lines
810 B
Plaintext
# Copyright 2018 the V8 project authors. All rights reserved.
|
|
# Use of this source code is governed by a BSD-style license that can be
|
|
# found in the LICENSE file.
|
|
|
|
[
|
|
[ALWAYS, {
|
|
# https://bugs.chromium.org/p/v8/issues/detail?id=8319
|
|
'memory/grow': [FAIL],
|
|
'module/customSections': [FAIL],
|
|
}], # ALWAYS
|
|
|
|
[ALWAYS, {
|
|
# https://bugs.chromium.org/p/v8/issues/detail?id=8633
|
|
'limits': [SKIP],
|
|
}], # ALWAYS
|
|
|
|
['arch == s390 or arch == s390x or system == aix', {
|
|
# https://bugs.chromium.org/p/v8/issues/detail?id=8402
|
|
'instance/constructor': [SKIP],
|
|
}], # 'arch == s390 or arch == s390x or system == aix'
|
|
|
|
##############################################################################
|
|
['lite_mode', {
|
|
# TODO(v8:7777): Re-enable once wasm is supported in jitless mode.
|
|
'*': [SKIP],
|
|
}], # lite_mode
|
|
|
|
]
|