Rename QDeclarative symbols to QQuick and QQml
[profile/ivi/qtdeclarative.git] / tests / auto / qml / parserstress / tests / ecma / Math / 15.8.2.11.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.11.js';
40
41 /**
42    File Name:          15.8.2.11.js
43    ECMA Section:       15.8.2.11 Math.max(x, y)
44    Description:        return the smaller of the two arguments.
45    special cases:
46    - if x is NaN or y is NaN   return NaN
47    - if x < y                  return x
48    - if y > x                  return y
49    - if x is +0 and y is +0    return +0
50    - if x is +0 and y is -0    return -0
51    - if x is -0 and y is +0    return -0
52    - if x is -0 and y is -0    return -0
53    Author:             christine@netscape.com
54    Date:               7 july 1997
55 */
56
57 var SECTION = "15.8.2.11";
58 var VERSION = "ECMA_1";
59 var TITLE   = "Math.max(x, y)";
60 var BUGNUMBER="76439";
61
62 startTest();
63
64 writeHeaderToLog( SECTION + " "+ TITLE);
65
66 new TestCase( SECTION,
67               "Math.max.length",
68               2,
69               Math.max.length );
70
71 new TestCase( SECTION,
72               "Math.max()",
73               -Infinity,
74               Math.max() );
75
76 new TestCase( SECTION,
77               "Math.max(void 0, 1)",
78               Number.NaN,
79               Math.max( void 0, 1 ) );
80
81 new TestCase( SECTION,
82               "Math.max(void 0, void 0)",
83               Number.NaN,
84               Math.max( void 0, void 0 ) );
85
86 new TestCase( SECTION,
87               "Math.max(null, 1)",
88               1,
89               Math.max( null, 1 ) );
90
91 new TestCase( SECTION,
92               "Math.max(-1, null)",
93               0,
94               Math.max( -1, null ) );
95
96 new TestCase( SECTION,
97               "Math.max(true, false)",
98               1,
99               Math.max(true,false) );
100
101 new TestCase( SECTION,
102               "Math.max('-99','99')",
103               99,
104               Math.max( "-99","99") );
105
106 new TestCase( SECTION,
107               "Math.max(NaN, Infinity)",
108               Number.NaN,
109               Math.max(Number.NaN,Number.POSITIVE_INFINITY) );
110
111 new TestCase( SECTION,
112               "Math.max(NaN, 0)",
113               Number.NaN,
114               Math.max(Number.NaN, 0) );
115
116 new TestCase( SECTION,
117               "Math.max('a string', 0)",
118               Number.NaN,
119               Math.max("a string", 0) );
120
121 new TestCase( SECTION,
122               "Math.max(NaN, 1)",
123               Number.NaN,
124               Math.max(Number.NaN,1) );
125
126 new TestCase( SECTION,
127               "Math.max('a string',Infinity)",
128               Number.NaN,
129               Math.max("a string", Number.POSITIVE_INFINITY) );
130
131 new TestCase( SECTION,
132               "Math.max(Infinity, NaN)",
133               Number.NaN,
134               Math.max( Number.POSITIVE_INFINITY, Number.NaN) );
135
136 new TestCase( SECTION,
137               "Math.max(NaN, NaN)",
138               Number.NaN,
139               Math.max(Number.NaN, Number.NaN) );
140
141 new TestCase( SECTION,
142               "Math.max(0,NaN)",
143               Number.NaN,
144               Math.max(0,Number.NaN) );
145
146 new TestCase( SECTION,
147               "Math.max(1, NaN)",
148               Number.NaN,
149               Math.max(1, Number.NaN) );
150
151 new TestCase( SECTION,
152               "Math.max(0,0)",
153               0,
154               Math.max(0,0) );
155
156 new TestCase( SECTION,
157               "Math.max(0,-0)",
158               0,
159               Math.max(0,-0) );
160
161 new TestCase( SECTION,
162               "Math.max(-0,0)",
163               0,
164               Math.max(-0,0) );
165
166 new TestCase( SECTION,
167               "Math.max(-0,-0)",
168               -0,
169               Math.max(-0,-0) );
170
171 new TestCase( SECTION,
172               "Infinity/Math.max(-0,-0)",
173               -Infinity,
174               Infinity/Math.max(-0,-0) );
175
176 new TestCase( SECTION,
177               "Math.max(Infinity, Number.MAX_VALUE)", Number.POSITIVE_INFINITY,
178               Math.max(Number.POSITIVE_INFINITY, Number.MAX_VALUE) );
179
180 new TestCase( SECTION,
181               "Math.max(Infinity, Infinity)",
182               Number.POSITIVE_INFINITY,
183               Math.max(Number.POSITIVE_INFINITY,Number.POSITIVE_INFINITY) );
184
185 new TestCase( SECTION,
186               "Math.max(-Infinity,-Infinity)",
187               Number.NEGATIVE_INFINITY,
188               Math.max(Number.NEGATIVE_INFINITY,Number.NEGATIVE_INFINITY) );
189
190 new TestCase( SECTION,
191               "Math.max(1,.99999999999999)",
192               1,
193               Math.max(1,.99999999999999) );
194
195 new TestCase( SECTION,
196               "Math.max(-1,-.99999999999999)",
197               -.99999999999999,
198               Math.max(-1,-.99999999999999) );
199
200 test();