QML_RUNTIME_TESTING should be disabled by default.
[profile/ivi/qtdeclarative.git] / tests / auto / qml / parserstress / tests / ecma_3 / Array / 15.4.4.4-001.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 JavaScript Engine testing utilities.
16  *
17  * The Initial Developer of the Original Code is
18  * Netscape Communications Corp.
19  * Portions created by the Initial Developer are Copyright (C) 2002
20  * the Initial Developer. All Rights Reserved.
21  *
22  * Contributor(s):
23  *   george@vanous.com, igor@icesoft.no, pschwartau@netscape.com
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  * Date:    19 September 2002
42  * SUMMARY: Testing Array.prototype.concat()
43  * See http://bugzilla.mozilla.org/show_bug.cgi?id=169795
44  *
45  */
46 //-----------------------------------------------------------------------------
47 var gTestfile = '15.4.4.4-001.js';
48 var UBound = 0;
49 var BUGNUMBER = 169795;
50 var summary = 'Testing Array.prototype.concat()';
51 var status = '';
52 var statusitems = [];
53 var actual = '';
54 var actualvalues = [];
55 var expect= '';
56 var expectedvalues = [];
57 var x;
58
59
60 status = inSection(1);
61 x = "Hello";
62 actual = [].concat(x).toString();
63 expect = x.toString();
64 addThis();
65
66 status = inSection(2);
67 x = 999;
68 actual = [].concat(x).toString();
69 expect = x.toString();
70 addThis();
71
72 status = inSection(3);
73 x = /Hello/g;
74 actual = [].concat(x).toString();
75 expect = x.toString();
76 addThis();
77
78 status = inSection(4);
79 x = new Error("Hello");
80 actual = [].concat(x).toString();
81 expect = x.toString();
82 addThis();
83
84 status = inSection(5);
85 x = function() {return "Hello";};
86 actual = [].concat(x).toString();
87 expect = x.toString();
88 addThis();
89
90 status = inSection(6);
91 x = [function() {return "Hello";}];
92 actual = [].concat(x).toString();
93 expect = x.toString();
94 addThis();
95
96 status = inSection(7);
97 x = [1,2,3].concat([4,5,6]);
98 actual = [].concat(x).toString();
99 expect = x.toString();
100 addThis();
101
102 status = inSection(8);
103 x = eval('this');
104 actual = [].concat(x).toString();
105 expect = x.toString();
106 addThis();
107
108 /*
109  * The next two sections are by igor@icesoft.no; see
110  * http://bugzilla.mozilla.org/show_bug.cgi?id=169795#c3
111  */
112 status = inSection(9);
113 x={length:0};
114 actual = [].concat(x).toString();
115 expect = x.toString();
116 addThis();
117
118 status = inSection(10);
119 x={length:2, 0:0, 1:1};
120 actual = [].concat(x).toString();
121 expect = x.toString();
122 addThis();
123
124
125
126 //-----------------------------------------------------------------------------
127 test();
128 //-----------------------------------------------------------------------------
129
130
131
132 function addThis()
133 {
134   statusitems[UBound] = status;
135   actualvalues[UBound] = actual;
136   expectedvalues[UBound] = expect;
137   UBound++;
138 }
139
140
141 function test()
142 {
143   enterFunc('test');
144   printBugNumber(BUGNUMBER);
145   printStatus(summary);
146
147   for (var i=0; i<UBound; i++)
148   {
149     reportCompare(expectedvalues[i], actualvalues[i], statusitems[i]);
150   }
151
152   exitFunc ('test');
153 }