Merge "fix: the incorrect version of tarball generated by gbs export" into tizen
[platform/upstream/js.git] / js / src / tests / ecma / Math / 15.8.2.2.js
1 /* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
2 /* ***** BEGIN LICENSE BLOCK *****
3  * Version: MPL 1.1/GPL 2.0/LGPL 2.1
4  *
5  * The contents of this file are subject to the Mozilla Public License Version
6  * 1.1 (the "License"); you may not use this file except in compliance with
7  * the License. You may obtain a copy of the License at
8  * http://www.mozilla.org/MPL/
9  *
10  * Software distributed under the License is distributed on an "AS IS" basis,
11  * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
12  * for the specific language governing rights and limitations under the
13  * License.
14  *
15  * The Original Code is Mozilla Communicator client code, released
16  * March 31, 1998.
17  *
18  * The Initial Developer of the Original Code is
19  * Netscape Communications Corporation.
20  * Portions created by the Initial Developer are Copyright (C) 1998
21  * the Initial Developer. All Rights Reserved.
22  *
23  * Contributor(s):
24  *
25  * Alternatively, the contents of this file may be used under the terms of
26  * either the GNU General Public License Version 2 or later (the "GPL"), or
27  * the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
28  * in which case the provisions of the GPL or the LGPL are applicable instead
29  * of those above. If you wish to allow use of your version of this file only
30  * under the terms of either the GPL or the LGPL, and not to allow others to
31  * use your version of this file under the terms of the MPL, indicate your
32  * decision by deleting the provisions above and replace them with the notice
33  * and other provisions required by the GPL or the LGPL. If you do not delete
34  * the provisions above, a recipient may use your version of this file under
35  * the terms of any one of the MPL, the GPL or the LGPL.
36  *
37  * ***** END LICENSE BLOCK ***** */
38
39
40 /**
41    File Name:          15.8.2.2.js
42    ECMA Section:       15.8.2.2 acos( x )
43    Description:        return an approximation to the arc cosine of the
44    argument.  the result is expressed in radians and
45    range is from +0 to +PI.  special cases:
46    - if x is NaN, return NaN
47    - if x > 1, the result is NaN
48    - if x < -1, the result is NaN
49    - if x == 1, the result is +0
50    Author:             christine@netscape.com
51    Date:               7 july 1997
52 */
53 var SECTION = "15.8.2.2";
54 var VERSION = "ECMA_1";
55 startTest();
56 var TITLE   = "Math.acos()";
57
58 writeHeaderToLog( SECTION + " "+ TITLE);
59
60 new TestCase( SECTION,
61               "Math.acos.length",
62               1,
63               Math.acos.length );
64
65 new TestCase( SECTION,
66               "Math.acos(void 0)",
67               Number.NaN,
68               Math.acos(void 0) );
69
70 new TestCase( SECTION,
71               "Math.acos()",
72               Number.NaN,
73               Math.acos() );
74
75 new TestCase( SECTION,
76               "Math.acos(null)",
77               Math.PI/2,
78               Math.acos(null) );
79
80 new TestCase( SECTION,
81               "Math.acos(NaN)",
82               Number.NaN,
83               Math.acos(Number.NaN) );
84
85 new TestCase( SECTION,
86               "Math.acos(a string)",
87               Number.NaN,
88               Math.acos("a string") );
89
90 new TestCase( SECTION,
91               "Math.acos('0')",
92               Math.PI/2,
93               Math.acos('0') );
94
95 new TestCase( SECTION,
96               "Math.acos('1')",
97               0,
98               Math.acos('1') );
99
100 new TestCase( SECTION,
101               "Math.acos('-1')",
102               Math.PI,
103               Math.acos('-1') );
104
105 new TestCase( SECTION,
106               "Math.acos(1.00000001)",
107               Number.NaN,
108               Math.acos(1.00000001) );
109
110 new TestCase( SECTION,
111               "Math.acos(11.00000001)",
112               Number.NaN,
113               Math.acos(-1.00000001) );
114
115 new TestCase( SECTION,
116               "Math.acos(1)",
117               0,
118               Math.acos(1)          );
119
120 new TestCase( SECTION,
121               "Math.acos(-1)",
122               Math.PI,
123               Math.acos(-1)         );
124
125 new TestCase( SECTION,
126               "Math.acos(0)",
127               Math.PI/2,
128               Math.acos(0)          );
129
130 new TestCase( SECTION,
131               "Math.acos(-0)",
132               Math.PI/2,
133               Math.acos(-0)         );
134
135 new TestCase( SECTION,
136               "Math.acos(Math.SQRT1_2)",
137               Math.PI/4,
138               Math.acos(Math.SQRT1_2));
139
140 new TestCase( SECTION,
141               "Math.acos(-Math.SQRT1_2)",
142               Math.PI/4*3,
143               Math.acos(-Math.SQRT1_2));
144
145 new TestCase( SECTION,
146               "Math.acos(0.9999619230642)",
147               Math.PI/360,
148               Math.acos(0.9999619230642));
149
150 new TestCase( SECTION,
151               "Math.acos(-3.0)",
152               Number.NaN,
153               Math.acos(-3.0));
154
155 test();