blob: e8c4a4d1a2ab8682e68e5ea9269bfc3122fbdde0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
|
// |reftest| skip
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
/*
* Any copyright is dedicated to the Public Domain.
* http://creativecommons.org/licenses/publicdomain/
* Contributor: Jason Orendorff
*/
//-----------------------------------------------------------------------------
var BUGNUMBER = 479381;
var summary = 'Do not crash @ js_FinalizeStringRT with multi-threads.';
var actual = '';
var expect = '';
//-----------------------------------------------------------------------------
test();
//-----------------------------------------------------------------------------
function test()
{
enterFunc ('test');
printBugNumber(BUGNUMBER);
printStatus (summary);
if (typeof gczeal != 'function' || typeof scatter != 'function')
{
print(expect = actual = 'Test skipped: requires mulithreads');
}
else
{
expect = actual = 'No Crash';
gczeal(2);
function f() {
var s;
for (var i = 0; i < 9999; i++)
s = 'a' + String(i)[3] + 'b';
return s;
}
print(scatter([f, f, f, f]));
gczeal(0);
}
reportCompare(expect, actual, summary);
exitFunc ('test');
}
|