|
1 /* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */ |
|
2 /* This Source Code Form is subject to the terms of the Mozilla Public |
|
3 * License, v. 2.0. If a copy of the MPL was not distributed with this |
|
4 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ |
|
5 |
|
6 //----------------------------------------------------------------------------- |
|
7 var BUGNUMBER = 350312; |
|
8 var summary = 'Accessing wrong stack slot with nested catch/finally'; |
|
9 var actual = ''; |
|
10 var expect = ''; |
|
11 |
|
12 |
|
13 //----------------------------------------------------------------------------- |
|
14 test(); |
|
15 //----------------------------------------------------------------------------- |
|
16 |
|
17 function test() |
|
18 { |
|
19 enterFunc ('test'); |
|
20 printBugNumber(BUGNUMBER); |
|
21 printStatus (summary); |
|
22 |
|
23 var counter = 0; |
|
24 |
|
25 function f(x,y) { |
|
26 |
|
27 try |
|
28 { |
|
29 throw x; |
|
30 } |
|
31 catch(e) |
|
32 { |
|
33 if (y) |
|
34 throw e; |
|
35 } |
|
36 finally |
|
37 { |
|
38 try |
|
39 { |
|
40 actual += 'finally,'; |
|
41 throw 42; |
|
42 } |
|
43 catch(e2) |
|
44 { |
|
45 actual += e2; |
|
46 if (++counter > 10) |
|
47 { |
|
48 throw 'Infinite loop...'; |
|
49 } |
|
50 } |
|
51 } |
|
52 return 'returned'; |
|
53 } |
|
54 |
|
55 expect = 'finally,42'; |
|
56 actual = ''; |
|
57 |
|
58 try |
|
59 { |
|
60 print('test 1'); |
|
61 f(2, 1); |
|
62 } |
|
63 catch(ex) |
|
64 { |
|
65 } |
|
66 reportCompare(expect, actual, summary); |
|
67 |
|
68 actual = ''; |
|
69 try |
|
70 { |
|
71 print('test 2'); |
|
72 f(2, 0); |
|
73 } |
|
74 catch(ex) |
|
75 { |
|
76 } |
|
77 reportCompare(expect, actual, summary); |
|
78 |
|
79 exitFunc ('test'); |
|
80 } |