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