c2537ebd0e
Now that the underlying bug is fixed, we can expect the test to always pass. Also simplify the test a tiny bit and skip it on debug builds because it's slow. Bug: chromium:1161357 Change-Id: I2ce5e064b4f707f4bd680f04df95d5a342bec1b0 Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/2616220 Reviewed-by: Santiago Aboy Solanes <solanes@chromium.org> Commit-Queue: Santiago Aboy Solanes <solanes@chromium.org> Auto-Submit: Georg Neis <neis@chromium.org> Cr-Commit-Position: refs/heads/master@{#71972}
11 lines
359 B
JavaScript
11 lines
359 B
JavaScript
// Copyright 2020 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.
|
|
|
|
for (let i = 0; i < 3; i++) {
|
|
for (let j = 0; j < 32767; j++) Number;
|
|
for (let j = 0; j < 2335; j++) Number;
|
|
var arr = [, ...(new Int16Array(0xffff)), 0.5];
|
|
arr.concat(Number, arr)
|
|
}
|