2dd28df97a
This moves all tests that construct a wasm module (and load wasm-module-builder.js) from test/regress to the test/regress/wasm directory. This will make it easier to skip them all in the v8_enable_webassembly=false configuration. R=ahaas@chromium.org Bug: v8:11238 Change-Id: Ib22b0fb40a58f213182e68b78b34041651c436d1 Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/2712243 Reviewed-by: Andreas Haas <ahaas@chromium.org> Commit-Queue: Clemens Backes <clemensb@chromium.org> Cr-Commit-Position: refs/heads/master@{#72942}
19 lines
745 B
JavaScript
19 lines
745 B
JavaScript
// 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.
|
|
|
|
assertThrows(function() {
|
|
var memory = new WebAssembly.Memory({initial: 64 * 1024 * 1024 / 0x10000});
|
|
var array = new Uint8Array(memory.buffer);
|
|
Uint8Array.of.call(function() { return array },
|
|
{valueOf() { memory.grow(1); } });
|
|
}, TypeError);
|
|
|
|
assertThrows(function() {
|
|
var memory = new WebAssembly.Memory({initial: 64 * 1024 * 1024 / 0x10000});
|
|
var array = new Uint8Array(memory.buffer);
|
|
Uint8Array.from.call(function() { return array },
|
|
[{valueOf() { memory.grow(1); } }],
|
|
x => x);
|
|
}, TypeError);
|