2011-09-07 08:35:18 +02:00
|
|
|
// Copyright 2009 the Sputnik authors. All rights reserved.
|
|
|
|
// This code is governed by the BSD license found in the LICENSE file.
|
|
|
|
|
2014-07-22 01:09:02 +02:00
|
|
|
/*---
|
|
|
|
info: >
|
|
|
|
If x is -Infinity and y>0 and y is an odd integer, Math.pow(x,y) is
|
|
|
|
-Infinity
|
2014-07-25 00:41:42 +02:00
|
|
|
es5id: 15.8.2.13_A13
|
2014-07-22 01:09:02 +02:00
|
|
|
description: >
|
|
|
|
Checking if Math.pow(x,y) equals to -Infinity, where x is
|
|
|
|
-Infinity and y>0
|
|
|
|
---*/
|
2011-09-07 08:35:18 +02:00
|
|
|
|
|
|
|
// CHECK#1
|
|
|
|
|
2015-04-29 17:40:30 +02:00
|
|
|
var x = -Infinity;
|
|
|
|
var y = new Array();
|
2011-09-07 08:35:18 +02:00
|
|
|
y[0] = 1;
|
|
|
|
y[1] = 111;
|
|
|
|
y[2] = 111111;
|
2015-04-29 17:40:30 +02:00
|
|
|
var ynum = 3;
|
2011-09-07 08:35:18 +02:00
|
|
|
|
2015-04-29 17:40:30 +02:00
|
|
|
for (var i = 0; i < ynum; i++)
|
2011-09-07 08:35:18 +02:00
|
|
|
{
|
|
|
|
if (Math.pow(x,y[i]) !== -Infinity)
|
|
|
|
{
|
|
|
|
$ERROR("#1: Math.pow(" + x + ", " + y[i] + ") !== -Infinity");
|
|
|
|
}
|
|
|
|
}
|