05d4c187c99d68f2572b6eb7e422d6fdd5db805a
[profile/ivi/qtdeclarative.git] / tests / auto / declarative / parserstress / tests / ecma / Math / 15.8.2.10.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.10.js';
40
41 /**
42    File Name:          15.8.2.10.js
43    ECMA Section:       15.8.2.10  Math.log(x)
44    Description:        return an approximiation to the natural logarithm of
45    the argument.
46    special cases:
47    -   if arg is NaN       result is NaN
48    -   if arg is <0        result is NaN
49    -   if arg is 0 or -0   result is -Infinity
50    -   if arg is 1         result is 0
51    -   if arg is Infinity  result is Infinity
52    Author:             christine@netscape.com
53    Date:               7 july 1997
54 */
55
56 var SECTION = "15.8.2.10";
57 var VERSION = "ECMA_1";
58 var TITLE   = "Math.log(x)";
59 var BUGNUMBER = "77391";
60
61 startTest();
62
63 writeHeaderToLog( SECTION + " "+ TITLE);
64
65
66 new TestCase( SECTION,
67               "Math.log.length",
68               1,
69               Math.log.length );
70
71
72 new TestCase( SECTION,
73               "Math.log()",
74               Number.NaN,
75               Math.log() );
76
77 new TestCase( SECTION,
78               "Math.log(void 0)",
79               Number.NaN,
80               Math.log(void 0) );
81
82 new TestCase( SECTION,
83               "Math.log(null)",
84               Number.NEGATIVE_INFINITY,
85               Math.log(null) );
86
87 new TestCase( SECTION,
88               "Math.log(true)",
89               0,
90               Math.log(true) );
91
92 new TestCase( SECTION,
93               "Math.log(false)",
94               -Infinity,
95               Math.log(false) );
96
97 new TestCase( SECTION,
98               "Math.log('0')",
99               -Infinity,
100               Math.log('0') );
101
102 new TestCase( SECTION,
103               "Math.log('1')",
104               0,
105               Math.log('1') );
106
107 new TestCase( SECTION,
108               "Math.log('Infinity')",
109               Infinity,
110               Math.log("Infinity") );
111
112
113 new TestCase( SECTION,
114               "Math.log(NaN)",
115               Number.NaN,
116               Math.log(Number.NaN) );
117
118 new TestCase( SECTION,
119               "Math.log(-0.0000001)",
120               Number.NaN,
121               Math.log(-0.000001)  );
122
123 new TestCase( SECTION,
124               "Math.log(-1)",
125               Number.NaN,
126               Math.log(-1)  );
127
128 new TestCase( SECTION,
129               "Math.log(0)",
130               Number.NEGATIVE_INFINITY,
131               Math.log(0) );
132
133 new TestCase( SECTION,
134               "Math.log(-0)",
135               Number.NEGATIVE_INFINITY,
136               Math.log(-0));
137
138 new TestCase( SECTION,
139               "Math.log(1)",
140               0,
141               Math.log(1) );
142
143 new TestCase( SECTION,
144               "Math.log(Infinity)",
145               Number.POSITIVE_INFINITY,
146               Math.log(Number.POSITIVE_INFINITY) );
147
148 new TestCase( SECTION,
149               "Math.log(-Infinity)",
150               Number.NaN,
151               Math.log(Number.NEGATIVE_INFINITY) );
152
153 test();