summaryrefslogtreecommitdiff
path: root/test/suite/sputnik/Conformance/15_Native/15.8_The_Math_Object/15.8.2_Function_Properties_of_the_Math_Object/15.8.2.17_sqrt/S15.8.2.17_A2.js
blob: c0f761a7278932a636403b58c2e6f860525b3c6f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
// Copyright 2009 the Sputnik authors.  All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.

/**
 * @name: S15.8.2.17_A2;
 * @section: 15.8.2.17;
 * @assertion: If x less than 0, Math.sqrt(x) is NaN;
 * @description: Checking if Math.sqrt(x) is NaN, where x is less than 0;
 */
 
// CHECK#1
var x = -0.000000000000001;
if (!isNaN(Math.sqrt(x)))
{
	$ERROR("#1: 'var x=-0.000000000000001; isNaN(Math.sqrt(x)) === false'");
}

// CHECK#2
var x = -1;
if (!isNaN(Math.sqrt(x)))
{
	$ERROR("#2: 'var x=-1; isNaN(Math.sqrt(x)) === false'");
}

// CHECK#3
var x = -Infinity;
if (!isNaN(Math.sqrt(x)))
{
	$ERROR("#3: 'var x=-Infinity; isNaN(Math.sqrt(x)) === false'");
}