[compiler] Update test expectation
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}
This commit is contained in:
parent
1f7a018a07
commit
c2537ebd0e
@ -3,13 +3,8 @@
|
||||
// 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)), 4294967296];
|
||||
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)
|
||||
}
|
||||
eval(``);
|
@ -73,10 +73,6 @@
|
||||
# https://crbug.com/1129854
|
||||
'tools/log': ['arch == arm or arch == arm64', SKIP],
|
||||
|
||||
# crbug.com/1161357
|
||||
# TODO(solanes): Remove this entry once the underlying issue is fixed.
|
||||
'regress/regress-1161357': [PASS, FAIL],
|
||||
|
||||
##############################################################################
|
||||
# Tests where variants make no sense.
|
||||
'd8/enable-tracing': [PASS, NO_VARIANTS],
|
||||
@ -185,6 +181,7 @@
|
||||
# Skip slow tests in debug mode.
|
||||
'array-functions-prototype-misc': [SKIP],
|
||||
'compiler/regress-808472': [SKIP],
|
||||
'compiler/regress-1161357': [SKIP],
|
||||
'es6/promise-all-overflow-2': [SKIP],
|
||||
'generated-transition-stub': [SKIP],
|
||||
'regress/regress-524': [SKIP],
|
||||
|
Loading…
Reference in New Issue
Block a user