Imported Upstream version 1.0.0
[platform/upstream/js.git] / js / src / tests / js1_5 / GC / regress-319980-01.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  * Mozilla Foundation.
19  * Portions created by the Initial Developer are Copyright (C) 2006
20  * the Initial Developer. All Rights Reserved.
21  *
22  * Contributor(s): diablohn
23  *                 WADA
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 var BUGNUMBER = 319980;
41 var summary = 'GC not called during non-fatal out of memory';
42 var actual = '';
43 var expect = 'Normal Exit';
44
45 printBugNumber(BUGNUMBER);
46 printStatus (summary);
47 print ('This test should never fail explicitly. ' +
48        'You must view the memory usage during the test. ' +
49        'This test fails if memory usage for each subtest grows');
50
51 var timeOut  = 45 * 1000;
52 var interval = 0.01  * 1000;
53 var testFuncWatcherId;
54 var testFuncTimerId;
55 var maxTests = 5;
56 var currTest = 0;
57
58 if (typeof setTimeout == 'undefined')
59 {
60   setTimeout = function() {};
61   clearTimeout = function() {};
62   actual = 'Normal Exit';
63   reportCompare(expect, actual, summary);
64 }
65 else
66 {
67   // delay start until after js-test-driver-end runs.
68   // delay test driver end
69   gDelayTestDriverEnd = true;
70
71   setTimeout(testFuncWatcher, 1000);
72 }
73
74 function testFuncWatcher()
75 {
76   a = null;
77
78   gc();
79
80   clearTimeout(testFuncTimerId);
81   testFuncWatcherId = testFuncTimerId = null;
82   if (currTest >= maxTests)
83   {
84     actual = 'Normal Exit';
85     reportCompare(expect, actual, summary);
86     printStatus('Test Completed');
87     gDelayTestDriverEnd = false;
88     jsTestDriverEnd();
89     return;
90   }
91   ++currTest;
92  
93   print('Executing test ' + currTest + '\n');
94
95   testFuncWatcherId = setTimeout("testFuncWatcher()", timeOut);
96   testFuncTimerId = setTimeout(testFunc, interval);
97 }
98
99
100 var a;
101 function testFunc()
102 {
103
104   var i;
105
106   switch(currTest)
107   {
108   case 1:
109     a = new Array(100000);
110     for (i = 0; i < 100000; i++ )
111     {
112       a[i] = i;
113     }
114     break;
115
116   case 2:
117     a = new Array(100000);
118     for (i = 0; i < 100000; i++)
119     {
120       a[i] = new Number();
121       a[i] = i;
122     }
123     break;
124
125   case 3:
126     a = new String() ;
127     a = new Array(100000);
128     for ( i = 0; i < 100000; i++ )
129     {
130       a[i] = i;
131     }
132
133     break;
134
135   case 4:
136     a = new Array();
137     a[0] = new Array(100000);
138     for (i = 0; i < 100000; i++ )
139     {
140       a[0][i] = i;
141     }
142     break;
143
144   case 5:
145     a = new Array();
146     for (i = 0; i < 100000; i++ )
147     {
148       a[i] = i;
149     }
150     break;
151   }
152
153   if (testFuncTimerId)
154   {
155     testFuncTimerId = setTimeout(testFunc, interval);
156   }
157 }
158
159