зеркало из https://github.com/mozilla/pjs.git
JavaScript Test Library - segregate GC tests, bug 339835
This commit is contained in:
Родитель
32eb7d7fef
Коммит
bcf4bc2ce1
|
@ -0,0 +1,59 @@
|
|||
/* -*- Mode: java; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
|
||||
/* ***** BEGIN LICENSE BLOCK *****
|
||||
* Version: MPL 1.1/GPL 2.0/LGPL 2.1
|
||||
*
|
||||
* The contents of this file are subject to the Mozilla Public License Version
|
||||
* 1.1 (the "License"); you may not use this file except in compliance with
|
||||
* the License. You may obtain a copy of the License at
|
||||
* http://www.mozilla.org/MPL/
|
||||
*
|
||||
* Software distributed under the License is distributed on an "AS IS" basis,
|
||||
* WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
|
||||
* for the specific language governing rights and limitations under the
|
||||
* License.
|
||||
*
|
||||
* The Original Code is JavaScript Engine testing utilities.
|
||||
*
|
||||
* The Initial Developer of the Original Code is
|
||||
* Mozilla Foundation.
|
||||
* Portions created by the Initial Developer are Copyright (C) 2005
|
||||
* the Initial Developer. All Rights Reserved.
|
||||
*
|
||||
* Contributor(s): Igor Bukanov <igor@mir2.org>
|
||||
* Bob Clary <bob@bclary.com>
|
||||
*
|
||||
* Alternatively, the contents of this file may be used under the terms of
|
||||
* either the GNU General Public License Version 2 or later (the "GPL"), or
|
||||
* the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
|
||||
* in which case the provisions of the GPL or the LGPL are applicable instead
|
||||
* of those above. If you wish to allow use of your version of this file only
|
||||
* under the terms of either the GPL or the LGPL, and not to allow others to
|
||||
* use your version of this file under the terms of the MPL, indicate your
|
||||
* decision by deleting the provisions above and replace them with the notice
|
||||
* and other provisions required by the GPL or the LGPL. If you do not delete
|
||||
* the provisions above, a recipient may use your version of this file under
|
||||
* the terms of any one of the MPL, the GPL or the LGPL.
|
||||
*
|
||||
* ***** END LICENSE BLOCK ***** */
|
||||
|
||||
var bug = 280844;
|
||||
var summary = 'Uncontrolled recursion in js_MarkXML during GC';
|
||||
var actual = 'No Crash';
|
||||
var expect = 'No Crash';
|
||||
|
||||
START(summary);
|
||||
|
||||
printBugNumber (bug);
|
||||
printStatus (summary);
|
||||
|
||||
var N = 5 * 1000;
|
||||
var x = <x/>;
|
||||
for (var i = 1; i <= N; ++i) {
|
||||
x.appendChild(<x/>);
|
||||
x = x.x[0];
|
||||
}
|
||||
printStatus(x.toXMLString());
|
||||
gc();
|
||||
|
||||
TEST(1, expect, actual);
|
||||
END();
|
|
@ -0,0 +1,71 @@
|
|||
/* -*- Mode: java; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
|
||||
/* ***** BEGIN LICENSE BLOCK *****
|
||||
* Version: MPL 1.1/GPL 2.0/LGPL 2.1
|
||||
*
|
||||
* The contents of this file are subject to the Mozilla Public License Version
|
||||
* 1.1 (the "License"); you may not use this file except in compliance with
|
||||
* the License. You may obtain a copy of the License at
|
||||
* http://www.mozilla.org/MPL/
|
||||
*
|
||||
* Software distributed under the License is distributed on an "AS IS" basis,
|
||||
* WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
|
||||
* for the specific language governing rights and limitations under the
|
||||
* License.
|
||||
*
|
||||
* The Original Code is JavaScript Engine testing utilities.
|
||||
*
|
||||
* The Initial Developer of the Original Code is
|
||||
* Mozilla Foundation.
|
||||
* Portions created by the Initial Developer are Copyright (C) 2005
|
||||
* the Initial Developer. All Rights Reserved.
|
||||
*
|
||||
* Contributor(s): Igor Bukanov <igor@mir2.org>
|
||||
* Bob Clary <bob@bclary.com>
|
||||
*
|
||||
* Alternatively, the contents of this file may be used under the terms of
|
||||
* either the GNU General Public License Version 2 or later (the "GPL"), or
|
||||
* the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
|
||||
* in which case the provisions of the GPL or the LGPL are applicable instead
|
||||
* of those above. If you wish to allow use of your version of this file only
|
||||
* under the terms of either the GPL or the LGPL, and not to allow others to
|
||||
* use your version of this file under the terms of the MPL, indicate your
|
||||
* decision by deleting the provisions above and replace them with the notice
|
||||
* and other provisions required by the GPL or the LGPL. If you do not delete
|
||||
* the provisions above, a recipient may use your version of this file under
|
||||
* the terms of any one of the MPL, the GPL or the LGPL.
|
||||
*
|
||||
* ***** END LICENSE BLOCK ***** */
|
||||
|
||||
var bug = 280844;
|
||||
var summary = 'Uncontrolled recursion in js_MarkXML during GC ';
|
||||
var actual = 'No Crash';
|
||||
var expect = 'No Crash';
|
||||
|
||||
START(summary);
|
||||
|
||||
printBugNumber (bug);
|
||||
printStatus (summary);
|
||||
|
||||
var N = 100 * 1000;
|
||||
|
||||
function prepare_list(N)
|
||||
{
|
||||
var head = {};
|
||||
var cursor = head;
|
||||
for (var i = 0; i != N; ++i) {
|
||||
var ns = new Namespace();
|
||||
var x = <xml/>;
|
||||
x.addNamespace(ns);
|
||||
cursor.next = x;
|
||||
cursor = ns;
|
||||
}
|
||||
return head;
|
||||
}
|
||||
|
||||
var head = prepare_list(N);
|
||||
|
||||
gc();
|
||||
|
||||
TEST(1, expect, actual);
|
||||
|
||||
END();
|
|
@ -0,0 +1,79 @@
|
|||
/* -*- Mode: java; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
|
||||
/* ***** BEGIN LICENSE BLOCK *****
|
||||
* Version: MPL 1.1/GPL 2.0/LGPL 2.1
|
||||
*
|
||||
* The contents of this file are subject to the Mozilla Public License Version
|
||||
* 1.1 (the "License"); you may not use this file except in compliance with
|
||||
* the License. You may obtain a copy of the License at
|
||||
* http://www.mozilla.org/MPL/
|
||||
*
|
||||
* Software distributed under the License is distributed on an "AS IS" basis,
|
||||
* WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
|
||||
* for the specific language governing rights and limitations under the
|
||||
* License.
|
||||
*
|
||||
* The Original Code is JavaScript Engine testing utilities.
|
||||
*
|
||||
* The Initial Developer of the Original Code is
|
||||
* Mozilla Foundation.
|
||||
* Portions created by the Initial Developer are Copyright (C) 2005
|
||||
* the Initial Developer. All Rights Reserved.
|
||||
*
|
||||
* Contributor(s): Martin Honnen
|
||||
*
|
||||
* Alternatively, the contents of this file may be used under the terms of
|
||||
* either the GNU General Public License Version 2 or later (the "GPL"), or
|
||||
* the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
|
||||
* in which case the provisions of the GPL or the LGPL are applicable instead
|
||||
* of those above. If you wish to allow use of your version of this file only
|
||||
* under the terms of either the GPL or the LGPL, and not to allow others to
|
||||
* use your version of this file under the terms of the MPL, indicate your
|
||||
* decision by deleting the provisions above and replace them with the notice
|
||||
* and other provisions required by the GPL or the LGPL. If you do not delete
|
||||
* the provisions above, a recipient may use your version of this file under
|
||||
* the terms of any one of the MPL, the GPL or the LGPL.
|
||||
*
|
||||
* ***** END LICENSE BLOCK ***** */
|
||||
|
||||
START("Regress - Do not crash on gc");
|
||||
|
||||
var bug = 292455;
|
||||
var summary = 'Regress - Do not crash on gc';
|
||||
var actual = 'No Crash';
|
||||
var expect = 'No Crash';
|
||||
|
||||
printBugNumber (bug);
|
||||
printStatus (summary);
|
||||
|
||||
function output (text)
|
||||
{
|
||||
if (typeof alert != 'undefined')
|
||||
{
|
||||
alert(text);
|
||||
}
|
||||
else if (typeof print != 'undefined')
|
||||
{
|
||||
print(text);
|
||||
}
|
||||
}
|
||||
|
||||
function doTest ()
|
||||
{
|
||||
var html = <div xml:lang="en">
|
||||
<h1>Kibology for all</h1>
|
||||
<p>Kibology for all. All for Kibology. </p>
|
||||
</div>;
|
||||
// insert new child as last child
|
||||
html.* += <h1>All for Kibology</h1>;
|
||||
gc();
|
||||
output(html);
|
||||
html.* += <p>All for Kibology. Kibology for all.</p>;
|
||||
gc();
|
||||
output(html);
|
||||
}
|
||||
|
||||
doTest();
|
||||
|
||||
TEST(1, expect, actual);
|
||||
|
||||
END();
|
|
@ -0,0 +1,83 @@
|
|||
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
||||
/* ***** BEGIN LICENSE BLOCK *****
|
||||
* Version: MPL 1.1/GPL 2.0/LGPL 2.1
|
||||
*
|
||||
* The contents of this file are subject to the Mozilla Public License Version
|
||||
* 1.1 (the "License"); you may not use this file except in compliance with
|
||||
* the License. You may obtain a copy of the License at
|
||||
* http://www.mozilla.org/MPL/
|
||||
*
|
||||
* Software distributed under the License is distributed on an "AS IS" basis,
|
||||
* WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
|
||||
* for the specific language governing rights and limitations under the
|
||||
* License.
|
||||
*
|
||||
* The Original Code is JavaScript Engine testing utilities.
|
||||
*
|
||||
* The Initial Developer of the Original Code is
|
||||
* Mozilla Foundation.
|
||||
* Portions created by the Initial Developer are Copyright (C) 2006
|
||||
* the Initial Developer. All Rights Reserved.
|
||||
*
|
||||
* Contributor(s): Igor Bukanov
|
||||
*
|
||||
* Alternatively, the contents of this file may be used under the terms of
|
||||
* either the GNU General Public License Version 2 or later (the "GPL"), or
|
||||
* the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
|
||||
* in which case the provisions of the GPL or the LGPL are applicable instead
|
||||
* of those above. If you wish to allow use of your version of this file only
|
||||
* under the terms of either the GPL or the LGPL, and not to allow others to
|
||||
* use your version of this file under the terms of the MPL, indicate your
|
||||
* decision by deleting the provisions above and replace them with the notice
|
||||
* and other provisions required by the GPL or the LGPL. If you do not delete
|
||||
* the provisions above, a recipient may use your version of this file under
|
||||
* the terms of any one of the MPL, the GPL or the LGPL.
|
||||
*
|
||||
* ***** END LICENSE BLOCK ***** */
|
||||
//-----------------------------------------------------------------------------
|
||||
var bug = 324278;
|
||||
var summary = 'GC without recursion';
|
||||
var actual;
|
||||
var expect;
|
||||
|
||||
printBugNumber (bug);
|
||||
printStatus (summary);
|
||||
|
||||
var N = 1000 * 1000;
|
||||
|
||||
print("N = " + N);
|
||||
|
||||
function prepare_list(N)
|
||||
{
|
||||
var cursor = null;
|
||||
for (var i = 0; i != N; ++i) {
|
||||
var ns = new Namespace("protocol:address");
|
||||
ns.property = cursor;
|
||||
var xml = <xml/>;
|
||||
xml.addNamespace(ns);
|
||||
cursor = {xml: xml};
|
||||
}
|
||||
return cursor;
|
||||
}
|
||||
|
||||
print("preparing...");
|
||||
|
||||
var list = prepare_list(N);
|
||||
|
||||
print("prepared for "+N);
|
||||
gc();
|
||||
|
||||
var count = 0;
|
||||
while (list && list.xml.inScopeNamespaces().length > 0 && list.xml.inScopeNamespaces()[1]) {
|
||||
list = list.xml.inScopeNamespaces()[1].property;
|
||||
++count;
|
||||
}
|
||||
|
||||
expect = N;
|
||||
actual = count;
|
||||
|
||||
TEST(1, expect, actual);
|
||||
|
||||
gc();
|
||||
|
||||
END();
|
|
@ -0,0 +1,75 @@
|
|||
/* ***** BEGIN LICENSE BLOCK *****
|
||||
* Version: MPL 1.1/GPL 2.0/LGPL 2.1
|
||||
*
|
||||
* The contents of this file are subject to the Mozilla Public License Version
|
||||
* 1.1 (the "License"); you may not use this file except in compliance with
|
||||
* the License. You may obtain a copy of the License at
|
||||
* http://www.mozilla.org/MPL/
|
||||
*
|
||||
* Software distributed under the License is distributed on an "AS IS" basis,
|
||||
* WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
|
||||
* for the specific language governing rights and limitations under the
|
||||
* License.
|
||||
*
|
||||
* The Original Code is mozilla.org code.
|
||||
*
|
||||
* The Initial Developer of the Original Code is
|
||||
* Netscape Communications Corporation.
|
||||
* Portions created by the Initial Developer are Copyright (C) 1998
|
||||
* the Initial Developer. All Rights Reserved.
|
||||
*
|
||||
* Contributor(s):
|
||||
* jband@netscape.com, pschwartau@netscape.com
|
||||
*
|
||||
* Alternatively, the contents of this file may be used under the terms of
|
||||
* either the GNU General Public License Version 2 or later (the "GPL"), or
|
||||
* the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
|
||||
* in which case the provisions of the GPL or the LGPL are applicable instead
|
||||
* of those above. If you wish to allow use of your version of this file only
|
||||
* under the terms of either the GPL or the LGPL, and not to allow others to
|
||||
* use your version of this file under the terms of the MPL, indicate your
|
||||
* decision by deleting the provisions above and replace them with the notice
|
||||
* and other provisions required by the GPL or the LGPL. If you do not delete
|
||||
* the provisions above, a recipient may use your version of this file under
|
||||
* the terms of any one of the MPL, the GPL or the LGPL.
|
||||
*
|
||||
* ***** END LICENSE BLOCK *****
|
||||
*
|
||||
* Date: 14 October 2001
|
||||
*
|
||||
* SUMMARY: Regression test for Bugzilla bug 104584
|
||||
* See http://bugzilla.mozilla.org/show_bug.cgi?id=104584
|
||||
*
|
||||
* Testing that we don't crash on this code. The idea is to
|
||||
* call F,G WITHOUT providing an argument. This caused a crash
|
||||
* on the second call to obj.toString() or print(obj) below -
|
||||
*/
|
||||
|
||||
//-----------------------------------------------------------------------------
|
||||
var bug = 104584;
|
||||
var summary = "Testing that we don't crash on this code -";
|
||||
|
||||
printBugNumber (bug);
|
||||
printStatus (summary);
|
||||
|
||||
F();
|
||||
G();
|
||||
|
||||
function F(obj)
|
||||
{
|
||||
if(!obj)
|
||||
obj = {};
|
||||
obj.toString();
|
||||
gc();
|
||||
obj.toString();
|
||||
}
|
||||
|
||||
|
||||
function G(obj)
|
||||
{
|
||||
if(!obj)
|
||||
obj = {};
|
||||
writeLineToLog(obj);
|
||||
gc();
|
||||
writeLineToLog(obj);
|
||||
}
|
|
@ -0,0 +1,111 @@
|
|||
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
||||
/* ***** BEGIN LICENSE BLOCK *****
|
||||
* Version: MPL 1.1/GPL 2.0/LGPL 2.1
|
||||
*
|
||||
* The contents of this file are subject to the Mozilla Public License Version
|
||||
* 1.1 (the "License"); you may not use this file except in compliance with
|
||||
* the License. You may obtain a copy of the License at
|
||||
* http://www.mozilla.org/MPL/
|
||||
*
|
||||
* Software distributed under the License is distributed on an "AS IS" basis,
|
||||
* WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
|
||||
* for the specific language governing rights and limitations under the
|
||||
* License.
|
||||
*
|
||||
* The Original Code is JavaScript Engine testing utilities.
|
||||
*
|
||||
* The Initial Developer of the Original Code is
|
||||
* Mozilla Foundation.
|
||||
* Portions created by the Initial Developer are Copyright (C) 2005
|
||||
* the Initial Developer. All Rights Reserved.
|
||||
*
|
||||
* Contributor(s): Igor Bukanov <igor@mir2.org>
|
||||
* Bob Clary <bob@bclary.com>
|
||||
*
|
||||
* Alternatively, the contents of this file may be used under the terms of
|
||||
* either the GNU General Public License Version 2 or later (the "GPL"), or
|
||||
* the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
|
||||
* in which case the provisions of the GPL or the LGPL are applicable instead
|
||||
* of those above. If you wish to allow use of your version of this file only
|
||||
* under the terms of either the GPL or the LGPL, and not to allow others to
|
||||
* use your version of this file under the terms of the MPL, indicate your
|
||||
* decision by deleting the provisions above and replace them with the notice
|
||||
* and other provisions required by the GPL or the LGPL. If you do not delete
|
||||
* the provisions above, a recipient may use your version of this file under
|
||||
* the terms of any one of the MPL, the GPL or the LGPL.
|
||||
*
|
||||
* ***** END LICENSE BLOCK ***** */
|
||||
//-----------------------------------------------------------------------------
|
||||
var bug = 203278;
|
||||
var summary = 'Don\'t crash in recursive js_MarkGCThing';
|
||||
var actual = 'FAIL';
|
||||
var expect = 'PASS';
|
||||
|
||||
printBugNumber (bug);
|
||||
printStatus (summary);
|
||||
|
||||
// Prepare array to test DeutschSchorrWaite implementation
|
||||
// and its reverse pointer scanning performance
|
||||
|
||||
var a = new Array(1000 * 1000);
|
||||
|
||||
var i = a.length;
|
||||
while (i-- != 0) {
|
||||
switch (i % 11) {
|
||||
case 0:
|
||||
a[i] = { };
|
||||
break;
|
||||
case 1:
|
||||
a[i] = { a: true, b: false, c: 0 };
|
||||
break;
|
||||
case 2:
|
||||
a[i] = { 0: true, 1: {}, 2: false };
|
||||
break;
|
||||
case 3:
|
||||
a[i] = { a: 1.2, b: "", c: [] };
|
||||
break;
|
||||
case 4:
|
||||
a[i] = [ false ];
|
||||
break;
|
||||
case 6:
|
||||
a[i] = [];
|
||||
break;
|
||||
case 7:
|
||||
a[i] = false;
|
||||
break;
|
||||
case 8:
|
||||
a[i] = "x";
|
||||
break;
|
||||
case 9:
|
||||
a[i] = new String("x");
|
||||
break;
|
||||
case 10:
|
||||
a[i] = 1.1;
|
||||
break;
|
||||
case 10:
|
||||
a[i] = new Boolean();
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
printStatus("DSF is prepared");
|
||||
|
||||
// Prepare linked list that causes recursion during GC with
|
||||
// depth O(list size)
|
||||
// Note: pass "-S 500000" option to the shell to limit stack quota
|
||||
// available for recursion
|
||||
|
||||
for (i = 0; i != 50*1000; ++i) {
|
||||
a = [a, a, {}];
|
||||
a = [a, {}, a];
|
||||
|
||||
}
|
||||
|
||||
printStatus("Linked list is prepared");
|
||||
|
||||
gc();
|
||||
|
||||
actual = 'PASS';
|
||||
|
||||
reportCompare(expect, actual, summary);
|
||||
|
|
@ -0,0 +1,74 @@
|
|||
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
||||
/* ***** BEGIN LICENSE BLOCK *****
|
||||
* Version: MPL 1.1/GPL 2.0/LGPL 2.1
|
||||
*
|
||||
* The contents of this file are subject to the Mozilla Public License Version
|
||||
* 1.1 (the "License"); you may not use this file except in compliance with
|
||||
* the License. You may obtain a copy of the License at
|
||||
* http://www.mozilla.org/MPL/
|
||||
*
|
||||
* Software distributed under the License is distributed on an "AS IS" basis,
|
||||
* WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
|
||||
* for the specific language governing rights and limitations under the
|
||||
* License.
|
||||
*
|
||||
* The Original Code is JavaScript Engine testing utilities.
|
||||
*
|
||||
* The Initial Developer of the Original Code is
|
||||
* Mozilla Foundation.
|
||||
* Portions created by the Initial Developer are Copyright (C) 2005
|
||||
* the Initial Developer. All Rights Reserved.
|
||||
*
|
||||
* Contributor(s): Igor Bukanov <igor@mir2.org>
|
||||
* Bob Clary <bob@bclary.com>
|
||||
*
|
||||
* Alternatively, the contents of this file may be used under the terms of
|
||||
* either the GNU General Public License Version 2 or later (the "GPL"), or
|
||||
* the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
|
||||
* in which case the provisions of the GPL or the LGPL are applicable instead
|
||||
* of those above. If you wish to allow use of your version of this file only
|
||||
* under the terms of either the GPL or the LGPL, and not to allow others to
|
||||
* use your version of this file under the terms of the MPL, indicate your
|
||||
* decision by deleting the provisions above and replace them with the notice
|
||||
* and other provisions required by the GPL or the LGPL. If you do not delete
|
||||
* the provisions above, a recipient may use your version of this file under
|
||||
* the terms of any one of the MPL, the GPL or the LGPL.
|
||||
*
|
||||
* ***** END LICENSE BLOCK ***** */
|
||||
//-----------------------------------------------------------------------------
|
||||
var bug = 203278;
|
||||
var summary = 'Don\'t crash in recursive js_MarkGCThing';
|
||||
var actual = 'FAIL';
|
||||
var expect = 'PASS';
|
||||
|
||||
printBugNumber (bug);
|
||||
printStatus (summary);
|
||||
|
||||
// Prepare array a to cause O(a.length^2) bahaviour in the current
|
||||
// DeutschSchorrWaite implementation
|
||||
|
||||
var a = new Array(1000 * 100);
|
||||
|
||||
var i = a.length;
|
||||
while (i-- != 0)
|
||||
{
|
||||
a[i] = {};
|
||||
}
|
||||
|
||||
// Prepare linked list that causes recursion during GC with
|
||||
// depth O(list size)
|
||||
|
||||
for (i = 0; i != 50*1000; ++i)
|
||||
{
|
||||
a = [a, a.concat()];
|
||||
}
|
||||
|
||||
if (typeof gc == 'function')
|
||||
{
|
||||
gc();
|
||||
}
|
||||
|
||||
actual = 'PASS';
|
||||
|
||||
reportCompare(expect, actual, summary);
|
||||
|
|
@ -0,0 +1,63 @@
|
|||
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
||||
/* ***** BEGIN LICENSE BLOCK *****
|
||||
* Version: MPL 1.1/GPL 2.0/LGPL 2.1
|
||||
*
|
||||
* The contents of this file are subject to the Mozilla Public License Version
|
||||
* 1.1 (the "License"); you may not use this file except in compliance with
|
||||
* the License. You may obtain a copy of the License at
|
||||
* http://www.mozilla.org/MPL/
|
||||
*
|
||||
* Software distributed under the License is distributed on an "AS IS" basis,
|
||||
* WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
|
||||
* for the specific language governing rights and limitations under the
|
||||
* License.
|
||||
*
|
||||
* The Original Code is JavaScript Engine testing utilities.
|
||||
*
|
||||
* The Initial Developer of the Original Code is
|
||||
* Mozilla Foundation.
|
||||
* Portions created by the Initial Developer are Copyright (C) 2005
|
||||
* the Initial Developer. All Rights Reserved.
|
||||
*
|
||||
* Contributor(s): James Ross <silver@warwickcompsoc.co.uk>
|
||||
* Alex Vincent <ajvincent@gmail.com>
|
||||
* timeless <timeless@mozdev.org>
|
||||
* Bob Clary <bob@bclary.com>
|
||||
*
|
||||
* Alternatively, the contents of this file may be used under the terms of
|
||||
* either the GNU General Public License Version 2 or later (the "GPL"), or
|
||||
* the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
|
||||
* in which case the provisions of the GPL or the LGPL are applicable instead
|
||||
* of those above. If you wish to allow use of your version of this file only
|
||||
* under the terms of either the GPL or the LGPL, and not to allow others to
|
||||
* use your version of this file under the terms of the MPL, indicate your
|
||||
* decision by deleting the provisions above and replace them with the notice
|
||||
* and other provisions required by the GPL or the LGPL. If you do not delete
|
||||
* the provisions above, a recipient may use your version of this file under
|
||||
* the terms of any one of the MPL, the GPL or the LGPL.
|
||||
*
|
||||
* ***** END LICENSE BLOCK ***** */
|
||||
//-----------------------------------------------------------------------------
|
||||
// testcase by James Ross <silver@warwickcompsoc.co.uk>
|
||||
var bug = 278725;
|
||||
var summary = 'Don\'t Crash during GC';
|
||||
var actual = 'Crash';
|
||||
var expect = 'No Crash';
|
||||
|
||||
printBugNumber (bug);
|
||||
printStatus (summary);
|
||||
|
||||
var results = [];
|
||||
for (var k = 0; k < 600000; k++) {
|
||||
if (! (k %100000)) {
|
||||
printStatus('hi');
|
||||
if (0) {
|
||||
results.length = 0;
|
||||
gc();
|
||||
}
|
||||
}
|
||||
results.push({});
|
||||
}
|
||||
|
||||
actual = 'No Crash';
|
||||
reportCompare(expect, actual, summary);
|
|
@ -0,0 +1,55 @@
|
|||
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
||||
/* ***** BEGIN LICENSE BLOCK *****
|
||||
* Version: MPL 1.1/GPL 2.0/LGPL 2.1
|
||||
*
|
||||
* The contents of this file are subject to the Mozilla Public License Version
|
||||
* 1.1 (the "License"); you may not use this file except in compliance with
|
||||
* the License. You may obtain a copy of the License at
|
||||
* http://www.mozilla.org/MPL/
|
||||
*
|
||||
* Software distributed under the License is distributed on an "AS IS" basis,
|
||||
* WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
|
||||
* for the specific language governing rights and limitations under the
|
||||
* License.
|
||||
*
|
||||
* The Original Code is JavaScript Engine testing utilities.
|
||||
*
|
||||
* The Initial Developer of the Original Code is
|
||||
* Mozilla Foundation.
|
||||
* Portions created by the Initial Developer are Copyright (C) 2005
|
||||
* the Initial Developer. All Rights Reserved.
|
||||
*
|
||||
* Contributor(s):
|
||||
*
|
||||
* Alternatively, the contents of this file may be used under the terms of
|
||||
* either the GNU General Public License Version 2 or later (the "GPL"), or
|
||||
* the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
|
||||
* in which case the provisions of the GPL or the LGPL are applicable instead
|
||||
* of those above. If you wish to allow use of your version of this file only
|
||||
* under the terms of either the GPL or the LGPL, and not to allow others to
|
||||
* use your version of this file under the terms of the MPL, indicate your
|
||||
* decision by deleting the provisions above and replace them with the notice
|
||||
* and other provisions required by the GPL or the LGPL. If you do not delete
|
||||
* the provisions above, a recipient may use your version of this file under
|
||||
* the terms of any one of the MPL, the GPL or the LGPL.
|
||||
*
|
||||
* ***** END LICENSE BLOCK ***** */
|
||||
//-----------------------------------------------------------------------------
|
||||
var bug = 306788;
|
||||
var summary = 'Do not crash sorting Arrays due to GC';
|
||||
var actual = 'No Crash';
|
||||
var expect = 'No Crash';
|
||||
|
||||
printBugNumber (bug);
|
||||
printStatus (summary);
|
||||
|
||||
var array = new Array();
|
||||
|
||||
for (var i = 0; i < 5000; i++)
|
||||
{
|
||||
array[i] = new Array('1', '2', '3', '4', '5');
|
||||
}
|
||||
|
||||
array.sort();
|
||||
|
||||
reportCompare(expect, actual, summary);
|
|
@ -0,0 +1,64 @@
|
|||
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
||||
/* ***** BEGIN LICENSE BLOCK *****
|
||||
* Version: MPL 1.1/GPL 2.0/LGPL 2.1
|
||||
*
|
||||
* The contents of this file are subject to the Mozilla Public License Version
|
||||
* 1.1 (the "License"); you may not use this file except in compliance with
|
||||
* the License. You may obtain a copy of the License at
|
||||
* http://www.mozilla.org/MPL/
|
||||
*
|
||||
* Software distributed under the License is distributed on an "AS IS" basis,
|
||||
* WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
|
||||
* for the specific language governing rights and limitations under the
|
||||
* License.
|
||||
*
|
||||
* The Original Code is JavaScript Engine testing utilities.
|
||||
*
|
||||
* The Initial Developer of the Original Code is
|
||||
* Mozilla Foundation.
|
||||
* Portions created by the Initial Developer are Copyright (C) 2005
|
||||
* the Initial Developer. All Rights Reserved.
|
||||
*
|
||||
* Contributor(s): Igor Bukanov
|
||||
*
|
||||
* Alternatively, the contents of this file may be used under the terms of
|
||||
* either the GNU General Public License Version 2 or later (the "GPL"), or
|
||||
* the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
|
||||
* in which case the provisions of the GPL or the LGPL are applicable instead
|
||||
* of those above. If you wish to allow use of your version of this file only
|
||||
* under the terms of either the GPL or the LGPL, and not to allow others to
|
||||
* use your version of this file under the terms of the MPL, indicate your
|
||||
* decision by deleting the provisions above and replace them with the notice
|
||||
* and other provisions required by the GPL or the LGPL. If you do not delete
|
||||
* the provisions above, a recipient may use your version of this file under
|
||||
* the terms of any one of the MPL, the GPL or the LGPL.
|
||||
*
|
||||
* ***** END LICENSE BLOCK ***** */
|
||||
//-----------------------------------------------------------------------------
|
||||
var bug = 316885;
|
||||
var summary = 'Unrooted access in jsinterp.c';
|
||||
var actual = '';
|
||||
var expect = '';
|
||||
|
||||
printBugNumber (bug);
|
||||
printStatus (summary);
|
||||
|
||||
var str_with_num = "0.1";
|
||||
|
||||
var obj = {
|
||||
elem getter: function() {
|
||||
return str_with_num;
|
||||
},
|
||||
elem setter: function(value) {
|
||||
gc();
|
||||
}
|
||||
|
||||
};
|
||||
|
||||
expect = Number(str_with_num);
|
||||
actual = obj.elem++;
|
||||
|
||||
gc();
|
||||
|
||||
|
||||
reportCompare(expect, actual, summary);
|
|
@ -0,0 +1,73 @@
|
|||
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
||||
/* ***** BEGIN LICENSE BLOCK *****
|
||||
* Version: MPL 1.1/GPL 2.0/LGPL 2.1
|
||||
*
|
||||
* The contents of this file are subject to the Mozilla Public License Version
|
||||
* 1.1 (the "License"); you may not use this file except in compliance with
|
||||
* the License. You may obtain a copy of the License at
|
||||
* http://www.mozilla.org/MPL/
|
||||
*
|
||||
* Software distributed under the License is distributed on an "AS IS" basis,
|
||||
* WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
|
||||
* for the specific language governing rights and limitations under the
|
||||
* License.
|
||||
*
|
||||
* The Original Code is JavaScript Engine testing utilities.
|
||||
*
|
||||
* The Initial Developer of the Original Code is
|
||||
* Mozilla Foundation.
|
||||
* Portions created by the Initial Developer are Copyright (C) 2005
|
||||
* the Initial Developer. All Rights Reserved.
|
||||
*
|
||||
* Contributor(s): Igor Bukanov
|
||||
*
|
||||
* Alternatively, the contents of this file may be used under the terms of
|
||||
* either the GNU General Public License Version 2 or later (the "GPL"), or
|
||||
* the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
|
||||
* in which case the provisions of the GPL or the LGPL are applicable instead
|
||||
* of those above. If you wish to allow use of your version of this file only
|
||||
* under the terms of either the GPL or the LGPL, and not to allow others to
|
||||
* use your version of this file under the terms of the MPL, indicate your
|
||||
* decision by deleting the provisions above and replace them with the notice
|
||||
* and other provisions required by the GPL or the LGPL. If you do not delete
|
||||
* the provisions above, a recipient may use your version of this file under
|
||||
* the terms of any one of the MPL, the GPL or the LGPL.
|
||||
*
|
||||
* ***** END LICENSE BLOCK ***** */
|
||||
//-----------------------------------------------------------------------------
|
||||
var bug = 316885;
|
||||
var summary = 'Unrooted access in jsinterp.c';
|
||||
var actual = '';
|
||||
var expect = '';
|
||||
|
||||
printBugNumber (bug);
|
||||
printStatus (summary);
|
||||
|
||||
var str = "test";
|
||||
|
||||
var lval = {
|
||||
valueOf: function() {
|
||||
return str+"1";
|
||||
}
|
||||
};
|
||||
|
||||
var ONE = 1;
|
||||
|
||||
var rval = {
|
||||
valueOf: function() {
|
||||
// Make sure that the result of the previous lval.valueOf
|
||||
// is not GC-rooted.
|
||||
var tmp = "x"+lval;
|
||||
if (typeof gc == "function")
|
||||
gc();
|
||||
for (var i = 0; i != 40000; ++i) {
|
||||
tmp = 1e100 / ONE;
|
||||
}
|
||||
return str;
|
||||
}
|
||||
};
|
||||
|
||||
expect = (str+"1" > str);
|
||||
actual = (lval > rval);
|
||||
|
||||
reportCompare(expect, actual, summary);
|
|
@ -0,0 +1,73 @@
|
|||
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
||||
/* ***** BEGIN LICENSE BLOCK *****
|
||||
* Version: MPL 1.1/GPL 2.0/LGPL 2.1
|
||||
*
|
||||
* The contents of this file are subject to the Mozilla Public License Version
|
||||
* 1.1 (the "License"); you may not use this file except in compliance with
|
||||
* the License. You may obtain a copy of the License at
|
||||
* http://www.mozilla.org/MPL/
|
||||
*
|
||||
* Software distributed under the License is distributed on an "AS IS" basis,
|
||||
* WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
|
||||
* for the specific language governing rights and limitations under the
|
||||
* License.
|
||||
*
|
||||
* The Original Code is JavaScript Engine testing utilities.
|
||||
*
|
||||
* The Initial Developer of the Original Code is
|
||||
* Mozilla Foundation.
|
||||
* Portions created by the Initial Developer are Copyright (C) 2005
|
||||
* the Initial Developer. All Rights Reserved.
|
||||
*
|
||||
* Contributor(s): Igor Bukanov
|
||||
*
|
||||
* Alternatively, the contents of this file may be used under the terms of
|
||||
* either the GNU General Public License Version 2 or later (the "GPL"), or
|
||||
* the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
|
||||
* in which case the provisions of the GPL or the LGPL are applicable instead
|
||||
* of those above. If you wish to allow use of your version of this file only
|
||||
* under the terms of either the GPL or the LGPL, and not to allow others to
|
||||
* use your version of this file under the terms of the MPL, indicate your
|
||||
* decision by deleting the provisions above and replace them with the notice
|
||||
* and other provisions required by the GPL or the LGPL. If you do not delete
|
||||
* the provisions above, a recipient may use your version of this file under
|
||||
* the terms of any one of the MPL, the GPL or the LGPL.
|
||||
*
|
||||
* ***** END LICENSE BLOCK ***** */
|
||||
//-----------------------------------------------------------------------------
|
||||
var bug = 316885;
|
||||
var summary = 'Unrooted access in jsinterp.c';
|
||||
var actual = '';
|
||||
var expect = '';
|
||||
|
||||
printBugNumber (bug);
|
||||
printStatus (summary);
|
||||
|
||||
var str = "test";
|
||||
|
||||
var lval = {
|
||||
valueOf: function() {
|
||||
return str+"1";
|
||||
}
|
||||
};
|
||||
|
||||
var ONE = 1;
|
||||
|
||||
var rval = {
|
||||
valueOf: function() {
|
||||
// Make sure that the result of the previous lval.valueOf
|
||||
// is not GC-rooted.
|
||||
var tmp = "x"+lval;
|
||||
if (typeof gc == "function")
|
||||
gc();
|
||||
for (var i = 0; i != 40000; ++i) {
|
||||
tmp = 1e100 / ONE;
|
||||
}
|
||||
return str;
|
||||
}
|
||||
};
|
||||
|
||||
expect = (str+"1")+str;
|
||||
actual = lval+rval;
|
||||
|
||||
reportCompare(expect, actual, summary);
|
|
@ -0,0 +1,93 @@
|
|||
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
||||
/* ***** BEGIN LICENSE BLOCK *****
|
||||
* Version: MPL 1.1/GPL 2.0/LGPL 2.1
|
||||
*
|
||||
* The contents of this file are subject to the Mozilla Public License Version
|
||||
* 1.1 (the "License"); you may not use this file except in compliance with
|
||||
* the License. You may obtain a copy of the License at
|
||||
* http://www.mozilla.org/MPL/
|
||||
*
|
||||
* Software distributed under the License is distributed on an "AS IS" basis,
|
||||
* WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
|
||||
* for the specific language governing rights and limitations under the
|
||||
* License.
|
||||
*
|
||||
* The Original Code is JavaScript Engine testing utilities.
|
||||
*
|
||||
* The Initial Developer of the Original Code is
|
||||
* Mozilla Foundation.
|
||||
* Portions created by the Initial Developer are Copyright (C) 2006
|
||||
* the Initial Developer. All Rights Reserved.
|
||||
*
|
||||
* Contributor(s): Igor Bukanov
|
||||
*
|
||||
* Alternatively, the contents of this file may be used under the terms of
|
||||
* either the GNU General Public License Version 2 or later (the "GPL"), or
|
||||
* the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
|
||||
* in which case the provisions of the GPL or the LGPL are applicable instead
|
||||
* of those above. If you wish to allow use of your version of this file only
|
||||
* under the terms of either the GPL or the LGPL, and not to allow others to
|
||||
* use your version of this file under the terms of the MPL, indicate your
|
||||
* decision by deleting the provisions above and replace them with the notice
|
||||
* and other provisions required by the GPL or the LGPL. If you do not delete
|
||||
* the provisions above, a recipient may use your version of this file under
|
||||
* the terms of any one of the MPL, the GPL or the LGPL.
|
||||
*
|
||||
* ***** END LICENSE BLOCK ***** */
|
||||
//-----------------------------------------------------------------------------
|
||||
var bug = 324278;
|
||||
var summary = 'GC without recursion';
|
||||
var actual = 'No Crash';
|
||||
var expect = 'No Crash';
|
||||
|
||||
printBugNumber (bug);
|
||||
printStatus (summary);
|
||||
|
||||
// Number to push native stack size beyond 10MB if GC recurses generating
|
||||
// segfault on Fedora Core / Ubuntu Linuxes where the stack size by default
|
||||
// is 10MB/8MB.
|
||||
var N = 100*1000;
|
||||
|
||||
function build(N) {
|
||||
// Explore the fact that regexp literals are shared between
|
||||
// function invocations. Thus we build the following chain:
|
||||
// chainTop: function->regexp->function->regexp....->null
|
||||
// to check how GC would deal with this chain.
|
||||
|
||||
var chainTop = null;
|
||||
for (var i = 0; i != N; ++i) {
|
||||
var f = Function('some_arg'+i, ' return /test/;');
|
||||
var re = f();
|
||||
re.previous = chainTop;
|
||||
chainTop = f;
|
||||
}
|
||||
return chainTop;
|
||||
}
|
||||
|
||||
function check(chainTop, N) {
|
||||
for (var i = 0; i != N; ++i) {
|
||||
var re = chainTop();
|
||||
chainTop = re.previous;
|
||||
}
|
||||
if (chainTop !== null)
|
||||
throw "Bad chainTop";
|
||||
|
||||
}
|
||||
|
||||
if (typeof gc != "function") {
|
||||
gc = function() {
|
||||
for (var i = 0; i != 50*1000; ++i) {
|
||||
var tmp = new Object();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
var chainTop = build(N);
|
||||
printStatus("BUILT");
|
||||
gc();
|
||||
check(chainTop, N);
|
||||
printStatus("CHECKED");
|
||||
chainTop = null;
|
||||
gc();
|
||||
|
||||
reportCompare(expect, actual, summary);
|
Загрузка…
Ссылка в новой задаче