QML_RUNTIME_TESTING should be disabled by default.
[profile/ivi/qtdeclarative.git] / tests / auto / declarative / parserstress / 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 gTestfile = '15.8.2.2.js';
40
41 /**
42    File Name:          15.8.2.2.js
43    ECMA Section:       15.8.2.2 acos( x )
44    Description:        return an approximation to the arc cosine of the
45    argument.  the result is expressed in radians and
46    range is from +0 to +PI.  special cases:
47    - if x is NaN, return NaN
48    - if x > 1, the result is NaN
49    - if x < -1, the result is NaN
50    - if x == 1, the result is +0
51    Author:             christine@netscape.com
52    Date:               7 july 1997
53 */
54 var SECTION = "15.8.2.2";
55 var VERSION = "ECMA_1";
56 startTest();
57 var TITLE   = "Math.acos()";
58
59 writeHeaderToLog( SECTION + " "+ TITLE);
60
61 new TestCase( SECTION,
62               "Math.acos.length",
63               1,
64               Math.acos.length );
65
66 new TestCase( SECTION,
67               "Math.acos(void 0)",
68               Number.NaN,
69               Math.acos(void 0) );
70
71 new TestCase( SECTION,
72               "Math.acos()",
73               Number.NaN,
74               Math.acos() );
75
76 new TestCase( SECTION,
77               "Math.acos(null)",
78               Math.PI/2,
79               Math.acos(null) );
80
81 new TestCase( SECTION,
82               "Math.acos(NaN)",
83               Number.NaN,
84               Math.acos(Number.NaN) );
85
86 new TestCase( SECTION,
87               "Math.acos(a string)",
88               Number.NaN,
89               Math.acos("a string") );
90
91 new TestCase( SECTION,
92               "Math.acos('0')",
93               Math.PI/2,
94               Math.acos('0') );
95
96 new TestCase( SECTION,
97               "Math.acos('1')",
98               0,
99               Math.acos('1') );
100
101 new TestCase( SECTION,
102               "Math.acos('-1')",
103               Math.PI,
104               Math.acos('-1') );
105
106 new TestCase( SECTION,
107               "Math.acos(1.00000001)",
108               Number.NaN,
109               Math.acos(1.00000001) );
110
111 new TestCase( SECTION,
112               "Math.acos(11.00000001)",
113               Number.NaN,
114               Math.acos(-1.00000001) );
115
116 new TestCase( SECTION,
117               "Math.acos(1)",
118               0,
119               Math.acos(1)          );
120
121 new TestCase( SECTION,
122               "Math.acos(-1)",
123               Math.PI,
124               Math.acos(-1)         );
125
126 new TestCase( SECTION,
127               "Math.acos(0)",
128               Math.PI/2,
129               Math.acos(0)          );
130
131 new TestCase( SECTION,
132               "Math.acos(-0)",
133               Math.PI/2,
134               Math.acos(-0)         );
135
136 new TestCase( SECTION,
137               "Math.acos(Math.SQRT1_2)",
138               Math.PI/4,
139               Math.acos(Math.SQRT1_2));
140
141 new TestCase( SECTION,
142               "Math.acos(-Math.SQRT1_2)",
143               Math.PI/4*3,
144               Math.acos(-Math.SQRT1_2));
145
146 new TestCase( SECTION,
147               "Math.acos(0.9999619230642)",
148               Math.PI/360,
149               Math.acos(0.9999619230642));
150
151 test();