mirror of
https://github.com/nodejs/node.git
synced 2025-05-15 17:23:43 +00:00

This commit applies some secondary changes in order to make `make test` pass cleanly: * disable broken postmortem debugging in common.gypi * drop obsolete strict mode test in parallel/test-repl * drop obsolete test parallel/test-v8-features PR-URL: https://github.com/iojs/io.js/pull/1232 Reviewed-By: Fedor Indutny <fedor@indutny.com>
83 lines
1.3 KiB
JavaScript
83 lines
1.3 KiB
JavaScript
// Copyright 2015 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.
|
|
|
|
// Flags: --allow-natives-syntax --use-osr --turbo-osr
|
|
|
|
"use strict";
|
|
|
|
function test(expected, func) {
|
|
assertEquals(expected, func());
|
|
assertEquals(expected, func());
|
|
assertEquals(expected, func());
|
|
}
|
|
|
|
function bar() {
|
|
var result;
|
|
{
|
|
let sum = 0;
|
|
for (let i = 0; i < 90; i++) {
|
|
sum += i;
|
|
if (i == 45) %OptimizeOsr();
|
|
}
|
|
result = sum;
|
|
}
|
|
return result;
|
|
}
|
|
|
|
test(4005, bar);
|
|
|
|
function baz() {
|
|
let sum = 0;
|
|
for (let i = 0; i < 2; i++) {
|
|
sum = 2;
|
|
%OptimizeOsr();
|
|
}
|
|
return sum;
|
|
}
|
|
|
|
test(2, baz);
|
|
|
|
function qux() {
|
|
var result = 0;
|
|
for (let i = 0; i < 2; i++) {
|
|
result = i;
|
|
%OptimizeOsr();
|
|
}
|
|
return result;
|
|
}
|
|
|
|
test(1, qux);
|
|
|
|
function nux() {
|
|
var result = 0;
|
|
for (let i = 0; i < 2; i++) {
|
|
{
|
|
let sum = i;
|
|
%OptimizeOsr();
|
|
result = sum;
|
|
}
|
|
}
|
|
return result;
|
|
}
|
|
|
|
test(1, nux);
|
|
|
|
function blo() {
|
|
var result;
|
|
{
|
|
let sum = 0;
|
|
for (let i = 0; i < 90; i++) {
|
|
sum += i;
|
|
if (i == 45) %OptimizeOsr();
|
|
}
|
|
result = ret;
|
|
function ret() {
|
|
return sum;
|
|
}
|
|
}
|
|
return result;
|
|
}
|
|
|
|
test(4005, blo());
|