|
1 // |reftest| skip |
|
2 /* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */ |
|
3 /* This Source Code Form is subject to the terms of the Mozilla Public |
|
4 * License, v. 2.0. If a copy of the MPL was not distributed with this |
|
5 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ |
|
6 |
|
7 //----------------------------------------------------------------------------- |
|
8 var BUGNUMBER = 471197; |
|
9 var summary = 'Do not crash when cx->thread is null'; |
|
10 var actual = ''; |
|
11 var expect = ''; |
|
12 |
|
13 |
|
14 //----------------------------------------------------------------------------- |
|
15 test(); |
|
16 //----------------------------------------------------------------------------- |
|
17 |
|
18 function test() |
|
19 { |
|
20 enterFunc ('test'); |
|
21 printBugNumber(BUGNUMBER); |
|
22 printStatus (summary); |
|
23 |
|
24 var results; |
|
25 |
|
26 jit(true); |
|
27 |
|
28 function f() { |
|
29 for (var i = 0; i != 1000; ++i) { |
|
30 } |
|
31 } |
|
32 |
|
33 if (typeof scatter == 'function') |
|
34 { |
|
35 results = scatter([f, f]); |
|
36 } |
|
37 else |
|
38 { |
|
39 print('Test skipped due to lack of scatter threadsafe function'); |
|
40 } |
|
41 |
|
42 jit(false); |
|
43 |
|
44 reportCompare(expect, actual, summary); |
|
45 |
|
46 exitFunc ('test'); |
|
47 } |