Chromium Code Reviews| Index: test/mjsunit/es6/tail-call-megatest.js |
| diff --git a/test/mjsunit/es6/tail-call-megatest.js b/test/mjsunit/es6/tail-call-megatest.js |
| index 978f02ad026b8814f81eba786472b1976cbd0aa6..95474cf4589d700bf96dc5196b4e0c53078521d2 100644 |
| --- a/test/mjsunit/es6/tail-call-megatest.js |
| +++ b/test/mjsunit/es6/tail-call-megatest.js |
| @@ -2,9 +2,9 @@ |
| // Use of this source code is governed by a BSD-style license that can be |
| // found in the LICENSE file. |
| -// Flags: --allow-natives-syntax --harmony-tailcalls --no-turbo-inlining |
| +// Flags: --allow-natives-syntax --harmony-tailcalls |
| // TODO(v8:4698), TODO(ishell): support these cases. |
| -// Flags: --nostress-opt |
| +// Flags: --turbo --nostress-opt |
|
Michael Starzinger
2016/03/08 16:25:08
Is the "--turbo" flag required here? One of the va
Igor Sheludko
2016/03/08 18:03:40
It is here to avoid running this test with Cranksh
Michael Starzinger
2016/03/08 21:29:53
Acknowledged. If it's temporary then I don't mind.
|
| Error.prepareStackTrace = (error,stack) => { |
| @@ -306,11 +306,10 @@ function run_tests() { |
| return source; |
| } |
| - // TODO(v8:4698), TODO(ishell): support all commented cases. |
| var f_args_variants = ["", "1", "1, 2"]; |
| var g_args_variants = ["", "10", "10, 20"]; |
| - var f_inlinable_variants = [/*true,*/ false]; |
| - var g_inlinable_variants = [/*true,*/ false]; |
| + var f_inlinable_variants = [true, false]; |
| + var g_inlinable_variants = [true, false]; |
| var f_variants = [ |
| f_cfg_sloppy, |
| f_cfg_strict, |