| Index: test/mjsunit/math-floor-part1.js
|
| diff --git a/test/mjsunit/math-floor-part1.js b/test/mjsunit/math-floor-part1.js
|
| index 65ae3c68e46d20f477769005aee261da1ddfe18e..bad1edd081b33a79e855fe93534207eba44f1cb5 100644
|
| --- a/test/mjsunit/math-floor-part1.js
|
| +++ b/test/mjsunit/math-floor-part1.js
|
| @@ -38,6 +38,15 @@ function testFloor(expect, input) {
|
| %OptimizeFunctionOnNextCall(test);
|
| assertEquals(expect, test(input));
|
|
|
| + var test_double_input = new Function(
|
| + 'n',
|
| + '"' + (test_id++) + '";return Math.floor(+n)');
|
| + assertEquals(expect, test_double_input(input));
|
| + assertEquals(expect, test_double_input(input));
|
| + assertEquals(expect, test_double_input(input));
|
| + %OptimizeFunctionOnNextCall(test_double_input);
|
| + assertEquals(expect, test_double_input(input));
|
| +
|
| var test_double_output = new Function(
|
| 'n',
|
| '"' + (test_id++) + '";return Math.floor(n) + -0.0');
|
| @@ -46,6 +55,26 @@ function testFloor(expect, input) {
|
| assertEquals(expect, test_double_output(input));
|
| %OptimizeFunctionOnNextCall(test_double_output);
|
| assertEquals(expect, test_double_output(input));
|
| +
|
| + var test_via_ceil = new Function(
|
| + 'n',
|
| + '"' + (test_id++) + '";return -Math.ceil(-n)');
|
| + assertEquals(expect, test_via_ceil(input));
|
| + assertEquals(expect, test_via_ceil(input));
|
| + assertEquals(expect, test_via_ceil(input));
|
| + %OptimizeFunctionOnNextCall(test_via_ceil);
|
| + assertEquals(expect, test_via_ceil(input));
|
| +
|
| + if (input >= 0) {
|
| + var test_via_trunc = new Function(
|
| + 'n',
|
| + '"' + (test_id++) + '";return Math.trunc(n)');
|
| + assertEquals(expect, test_via_trunc(input));
|
| + assertEquals(expect, test_via_trunc(input));
|
| + assertEquals(expect, test_via_trunc(input));
|
| + %OptimizeFunctionOnNextCall(test_via_trunc);
|
| + assertEquals(expect, test_via_trunc(input));
|
| + }
|
| }
|
|
|
| function zero() {
|
|
|