blob: 60a829075357b6e2f31f38210ae179fe305f5344 [file] [log] [blame]
//-------------------------------------------------------------------------------------------------------
// Copyright (C) Microsoft. All rights reserved.
// Licensed under the MIT license. See LICENSE.txt file in the project root for full license information.
//-------------------------------------------------------------------------------------------------------
// interesting floating point limits
checkNaN(NaN);
checkNaN(5.1);
checkNaN(-2);
check(+0, 1);
check((Math.PI) / 2, 0);
check((Math.PI) / 3, 0.5);
checkNaN(+Infinity);
checkNaN(-Infinity);
if(!isNaN(Math.acos()))
{
WScript.Echo("error: Math.acos() is not NaN");
}
WScript.Echo("done");
function check(result, n) {
var rs = Math.acos(n);
if (Math.abs(rs - result) > 0.00000000001) {
WScript.Echo("acos(" + n + ") != " + result);
WScript.Echo(" wrong result is acos(" + n + ") = " + rs);
}
}
function checkNaN(x) {
var rs = Math.acos(x);
if (!isNaN(rs)) {
WScript.Echo("acos(" + x + ") != NaN");
WScript.Echo(" wrong result is acos(" + x + ") = " + rs);
}
}