Imported Upstream version 1.0.0
[platform/upstream/js.git] / js / src / tests / ecma / Math / 15.8.2.12.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.12.js
42    ECMA Section:       15.8.2.12 Math.min(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
57 var SECTION = "15.8.2.12";
58 var VERSION = "ECMA_1";
59 var TITLE   = "Math.min(x, y)";
60 var BUGNUMBER="76439";
61
62 startTest();
63
64 writeHeaderToLog( SECTION + " "+ TITLE);
65
66 new TestCase( SECTION,
67               "Math.min.length",
68               2,
69               Math.min.length );
70
71 new TestCase( SECTION,
72               "Math.min()",
73               Infinity,
74               Math.min() );
75
76 new TestCase( SECTION,
77               "Math.min(void 0, 1)",
78               Number.NaN,
79               Math.min( void 0, 1 ) );
80
81 new TestCase( SECTION,
82               "Math.min(void 0, void 0)",
83               Number.NaN,
84               Math.min( void 0, void 0 ) );
85
86 new TestCase( SECTION,
87               "Math.min(null, 1)",
88               0,
89               Math.min( null, 1 ) );
90
91 new TestCase( SECTION,
92               "Math.min(-1, null)",
93               -1,
94               Math.min( -1, null ) );
95
96 new TestCase( SECTION,
97               "Math.min(true, false)",
98               0,
99               Math.min(true,false) );
100
101 new TestCase( SECTION,
102               "Math.min('-99','99')",
103               -99,
104               Math.min( "-99","99") );
105
106 new TestCase( SECTION,
107               "Math.min(NaN,0)",
108               Number.NaN,
109               Math.min(Number.NaN,0) );
110
111 new TestCase( SECTION,
112               "Math.min(NaN,1)",
113               Number.NaN,
114               Math.min(Number.NaN,1) );
115
116 new TestCase( SECTION,
117               "Math.min(NaN,-1)",
118               Number.NaN,
119               Math.min(Number.NaN,-1) );
120
121 new TestCase( SECTION,
122               "Math.min(0,NaN)",
123               Number.NaN,
124               Math.min(0,Number.NaN) );
125
126 new TestCase( SECTION,
127               "Math.min(1,NaN)",
128               Number.NaN,
129               Math.min(1,Number.NaN) );
130
131 new TestCase( SECTION,
132               "Math.min(-1,NaN)",
133               Number.NaN,
134               Math.min(-1,Number.NaN) );
135
136 new TestCase( SECTION,
137               "Math.min(NaN,NaN)",
138               Number.NaN,
139               Math.min(Number.NaN,Number.NaN) );
140
141 new TestCase( SECTION,
142               "Math.min(1,1.0000000001)",
143               1,
144               Math.min(1,1.0000000001) );
145
146 new TestCase( SECTION,
147               "Math.min(1.0000000001,1)",
148               1,
149               Math.min(1.0000000001,1) );
150
151 new TestCase( SECTION,
152               "Math.min(0,0)",
153               0,
154               Math.min(0,0) );
155
156 new TestCase( SECTION,
157               "Math.min(0,-0)",
158               -0,
159               Math.min(0,-0) );
160
161 new TestCase( SECTION,
162               "Math.min(-0,-0)",
163               -0,
164               Math.min(-0,-0) );
165
166 new TestCase( SECTION,
167               "Infinity/Math.min(0,-0)",
168               -Infinity,
169               Infinity/Math.min(0,-0) );
170
171 new TestCase( SECTION,
172               "Infinity/Math.min(-0,-0)",
173               -Infinity,
174               Infinity/Math.min(-0,-0) );
175
176 test();