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.6_ceil/S15.8.2.6_A5.js
blob: 583557eafc706ac45cca7ed1adc79aa3121ee8e6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// 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.6_A5;
 * @section: 15.8.2.6;
 * @assertion: If x is -Infinity, Math.ceil(x) is -Infinity;
 * @description: Checking if Math.ceil(x) is -Infinity, where x is -Infinity; 
 */
 
// CHECK#1
var x = -Infinity;
if (Math.ceil(x) !== -Infinity)
{
	$ERROR("#1: 'var x = -Infinity; Math.ceil(x) !== -Infinity'");
}