Commit ab0266e2 authored by Clemens Hammacher's avatar Clemens Hammacher Committed by Commit Bot

[wasm] Fix regression test

Repeatedly allocating >1GB fails on stress bots, hence run a GC
in-between to free the array buffer.

R=titzer@chromium.org
CC=​mlippautz@chromium.org, ulan@chromium.org

Bug: v8:6924
Change-Id: I44761e83f62b8225148eecbc569748cd3be21d6a
Reviewed-on: https://chromium-review.googlesource.com/718109Reviewed-by: 's avatarBen Titzer <titzer@chromium.org>
Reviewed-by: 's avatarUlan Degenbaev <ulan@chromium.org>
Commit-Queue: Clemens Hammacher <clemensh@chromium.org>
Cr-Commit-Position: refs/heads/master@{#48541}
parent cdf30b29
...@@ -2,5 +2,13 @@ ...@@ -2,5 +2,13 @@
// Use of this source code is governed by a BSD-style license that can be // Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file. // found in the LICENSE file.
var size = 0x40000000; // Flags: --expose-gc
assertThrows(() => WebAssembly.validate(new Uint16Array(size)), RangeError);
var size = Math.floor(0xFFFFFFFF / 4) + 1;
(function() {
// Note: On 32 bit, this throws in the Uint16Array constructor (size does not
// fit in a Smi). On 64 bit, it throws in WebAssembly.validate, because the
// size exceeds the internal module size limit.
assertThrows(() => WebAssembly.validate(new Uint16Array(size)), RangeError);
})();
gc();
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment