Follow-on fix for bug 457825. Use sheet principal for agent and user sheets. r=dbaron...
[wine-gecko.git] / js / tests / js1_7 / geniter / fibonacci-matrix-generator.js
blob2590b0522217b2cec61ef603b74bd90e14710778
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  * Jeff Walden.
19  * Portions created by the Initial Developer are Copyright (C) 2006
20  * the Initial Developer. All Rights Reserved.
21  *
22  * Contributor(s):
23  *
24  * Alternatively, the contents of this file may be used under the terms of
25  * either the GNU General Public License Version 2 or later (the "GPL"), or
26  * the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
27  * in which case the provisions of the GPL or the LGPL are applicable instead
28  * of those above. If you wish to allow use of your version of this file only
29  * under the terms of either the GPL or the LGPL, and not to allow others to
30  * use your version of this file under the terms of the MPL, indicate your
31  * decision by deleting the provisions above and replace them with the notice
32  * and other provisions required by the GPL or the LGPL. If you do not delete
33  * the provisions above, a recipient may use your version of this file under
34  * the terms of any one of the MPL, the GPL or the LGPL.
35  *
36  * ***** END LICENSE BLOCK ***** */
38 var gTestfile = 'fibonacci-matrix-generator.js';
39 //-----------------------------------------------------------------------------
40 var BUGNUMBER     = "(none)";
41 var summary = "Fibonacci generator by matrix multiplication";
42 var actual, expect;
44 printBugNumber(BUGNUMBER);
45 printStatus(summary);
47 /**************
48  * BEGIN TEST *
49  **************/
51 function fib()
53   var init = [1, 0];
54   var mx = [[1, 1], [1, 0]];
55   while (true)
56   {
57     yield init[1];
58     var tmp = [,];
59     tmp[0] =
60       mx[0][0]*init[0] + mx[0][1]*init[1];
61     tmp[1] =
62       mx[1][0]*init[0] + mx[1][1]*init[1];
63     init = tmp;
64   }
67 var failed = false;
68 var it = fib();
70 try
72   if (it.next() != 0)
73     throw "F_0 failed";
74   if (it.next() != 1)
75     throw "F_1 failed";
76   if (it.next() != 1)
77     throw "F_2 failed";
78   if (it.next() != 2)
79     throw "F_3 failed";
80   if (it.next() != 3)
81     throw "F_4 failed";
82   if (it.next() != 5)
83     throw "F_5 failed";
84   if (it.next() != 8)
85     throw "F_6 failed";
87 catch (e)
89   failed = e;
94 expect = false;
95 actual = failed;
97 reportCompare(expect, actual, summary);