QML_RUNTIME_TESTING should be disabled by default.
[profile/ivi/qtdeclarative.git] / tests / auto / qml / parserstress / tests / ecma / Expressions / 11.6.3.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 = '11.6.3.js';
40
41 /**
42    File Name:          11.6.3.js
43    ECMA Section:       11.6.3 Applying the additive operators
44    (+, -) to numbers
45    Description:
46    The + operator performs addition when applied to two operands of numeric
47    type, producing the sum of the operands. The - operator performs
48    subtraction, producing the difference of two numeric operands.
49
50    Addition is a commutative operation, but not always associative.
51
52    The result of an addition is determined using the rules of IEEE 754
53    double-precision arithmetic:
54
55    If either operand is NaN, the result is NaN.
56    The sum of two infinities of opposite sign is NaN.
57    The sum of two infinities of the same sign is the infinity of that sign.
58    The sum of an infinity and a finite value is equal to the infinite operand.
59    The sum of two negative zeros is 0. The sum of two positive zeros, or of
60    two zeros of opposite sign, is +0.
61    The sum of a zero and a nonzero finite value is equal to the nonzero
62    operand.
63    The sum of two nonzero finite values of the same magnitude and opposite
64    sign is +0.
65    In the remaining cases, where neither an infinity, nor a zero, nor NaN is
66    involved, and the operands have the same sign or have different
67    magnitudes, the sum is computed and rounded to the nearest
68    representable value using IEEE 754 round-to-nearest mode. If the
69    magnitude is too large to represent, the operation overflows and
70    the result is then an infinity of appropriate sign. The ECMAScript
71    language requires support of gradual underflow as defined by IEEE 754.
72
73    Author:             christine@netscape.com
74    Date:               12 november 1997
75 */
76 var SECTION = "11.6.3";
77 var VERSION = "ECMA_1";
78 startTest();
79
80 writeHeaderToLog( SECTION + " Applying the additive operators (+,-) to numbers");
81
82 new TestCase( SECTION,    "Number.NaN + 1",     Number.NaN,     Number.NaN + 1 );
83 new TestCase( SECTION,    "1 + Number.NaN",     Number.NaN,     1 + Number.NaN );
84
85 new TestCase( SECTION,    "Number.NaN - 1",     Number.NaN,     Number.NaN - 1 );
86 new TestCase( SECTION,    "1 - Number.NaN",     Number.NaN,     1 - Number.NaN );
87
88 new TestCase( SECTION,  "Number.POSITIVE_INFINITY + Number.POSITIVE_INFINITY",  Number.POSITIVE_INFINITY,   Number.POSITIVE_INFINITY + Number.POSITIVE_INFINITY);
89 new TestCase( SECTION,  "Number.NEGATIVE_INFINITY + Number.NEGATIVE_INFINITY",  Number.NEGATIVE_INFINITY,   Number.NEGATIVE_INFINITY + Number.NEGATIVE_INFINITY);
90
91 new TestCase( SECTION,  "Number.POSITIVE_INFINITY + Number.NEGATIVE_INFINITY",  Number.NaN,     Number.POSITIVE_INFINITY + Number.NEGATIVE_INFINITY);
92 new TestCase( SECTION,  "Number.NEGATIVE_INFINITY + Number.POSITIVE_INFINITY",  Number.NaN,     Number.NEGATIVE_INFINITY + Number.POSITIVE_INFINITY);
93
94 new TestCase( SECTION,  "Number.POSITIVE_INFINITY - Number.POSITIVE_INFINITY",  Number.NaN,   Number.POSITIVE_INFINITY - Number.POSITIVE_INFINITY);
95 new TestCase( SECTION,  "Number.NEGATIVE_INFINITY - Number.NEGATIVE_INFINITY",  Number.NaN,   Number.NEGATIVE_INFINITY - Number.NEGATIVE_INFINITY);
96
97 new TestCase( SECTION,  "Number.POSITIVE_INFINITY - Number.NEGATIVE_INFINITY",  Number.POSITIVE_INFINITY,   Number.POSITIVE_INFINITY - Number.NEGATIVE_INFINITY);
98 new TestCase( SECTION,  "Number.NEGATIVE_INFINITY - Number.POSITIVE_INFINITY",  Number.NEGATIVE_INFINITY,   Number.NEGATIVE_INFINITY - Number.POSITIVE_INFINITY);
99
100 new TestCase( SECTION,  "-0 + -0",      -0,     -0 + -0 );
101 new TestCase( SECTION,  "-0 - 0",       -0,     -0 - 0 );
102
103 new TestCase( SECTION,  "0 + 0",        0,      0 + 0 );
104 new TestCase( SECTION,  "0 + -0",       0,      0 + -0 );
105 new TestCase( SECTION,  "0 - -0",       0,      0 - -0 );
106 new TestCase( SECTION,  "0 - 0",        0,      0 - 0 );
107 new TestCase( SECTION,  "-0 - -0",      0,     -0 - -0 );
108 new TestCase( SECTION,  "-0 + 0",       0,     -0 + 0 );
109
110 new TestCase( SECTION,  "Number.MAX_VALUE - Number.MAX_VALUE",      0,  Number.MAX_VALUE - Number.MAX_VALUE );
111 new TestCase( SECTION,  "1/Number.MAX_VALUE - 1/Number.MAX_VALUE",  0,  1/Number.MAX_VALUE - 1/Number.MAX_VALUE );
112
113 new TestCase( SECTION,  "Number.MIN_VALUE - Number.MIN_VALUE",      0,  Number.MIN_VALUE - Number.MIN_VALUE );
114
115 test();